Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin actions to commit SHA #2453

Merged
merged 8 commits into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/add-commit-status/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
using: composite
steps:
- name: Add commit status
uses: actions/github-script@v6
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
env:
STATE: ${{ inputs.state }}
STATUS_CONTEXT: ${{ inputs.statusContext }}
Expand All @@ -36,4 +36,4 @@ runs:

const result = await github.rest.repos.createCommitStatus(args);

console.log("Result:", result)
console.log("Result:", result)
8 changes: 4 additions & 4 deletions .github/actions/bootstrap/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Bootstrap Workflow
description: Reusable action for setting up the repo
runs:
using: composite
steps:
steps:
- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7
with:
node-version: 16

Expand All @@ -14,7 +14,7 @@ runs:
working-directory: utils
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
- uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand All @@ -24,4 +24,4 @@ runs:

- name: Install dependencies
shell: bash
run: cd utils && yarn install --frozen-lockfile
run: cd utils && yarn install --frozen-lockfile
62 changes: 4 additions & 58 deletions .github/workflows/pr-merged.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
with:
token: ${{ secrets.OPENSOURCE_BOT_TOKEN }}
ref: "release"
fetch-depth: 0

- name: Setup workspace
uses: './.github/actions/bootstrap'
uses: "./.github/actions/bootstrap"

- name: Generate UUIDs for quickstarts
id: generate-uuids
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Temporarily disable branch protections
id: disable-branch-protection
if: always()
uses: actions/github-script@v6
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
with:
github-token: ${{ secrets.OPENSOURCE_BOT_TOKEN }}
script: |
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Re-enable branch protections
id: enable-branch-protection
if: always()
uses: actions/github-script@v6
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
with:
github-token: ${{ secrets.OPENSOURCE_BOT_TOKEN }}
script: |
Expand Down Expand Up @@ -111,57 +111,3 @@ jobs:
}
})
console.log("Result:", result)

# get-pr-number:
# name: Get PR number
# runs-on: ubuntu-latest
# outputs:
# pr-number: ${{ steps.output_pr_number.outputs.pr-number }}
# steps:
# - name: Download artifact
# uses: dawidd6/action-download-artifact@v2
# with:
# workflow: submit_gate.yml
# run_id: ${{ github.event.workflow_run.id }}

# - name: Get PR number
# id: output_pr_number
# run: |
# export PR_NUMBER=$(cat artifact/pr_number_submit.txt)
# echo "pr-number=$PR_NUMBER" >> $GITHUB_OUTPUT

# staging:
# needs: [generate-uuid, get-pr-number]
# uses: ./.github/workflows/reusable.quickstart_submission.yml
# with:
# pr-number: ${{ needs.get-pr-number.outputs.pr-number }}
# dry-run: false
# secrets:
# nr-api-url: ${{ secrets.NR_API_URL_STAGING }}
# nr-api-token: ${{ secrets.NR_API_TOKEN_STAGING }}
# github-token: ${{ secrets.GITHUB_TOKEN }}
# nr-license-key: ${{ secrets.NEW_RELIC_LICENSE_KEY }}

# production:
# needs: [staging, get-pr-number]
# uses: ./.github/workflows/reusable.quickstart_submission.yml
# with:
# pr-number: ${{ needs.get-pr-number.outputs.pr-number }}
# dry-run: false
# secrets:
# nr-api-url: ${{ secrets.NR_API_URL }}
# nr-api-token: ${{ secrets.NR_API_TOKEN }}
# github-token: ${{ secrets.GITHUB_TOKEN }}
# nr-license-key: ${{ secrets.NEW_RELIC_LICENSE_KEY }}

# eu-production:
# needs: [staging, get-pr-number]
# uses: ./.github/workflows/reusable.quickstart_submission.yml
# with:
# pr-number: ${{ needs.get-pr-number.outputs.pr-number }}
# dry-run: false
# secrets:
# nr-api-url: ${{ secrets.NR_API_URL_EU }}
# nr-api-token: ${{ secrets.NR_API_TOKEN_EU }}
# github-token: ${{ secrets.GITHUB_TOKEN }}
# nr-license-key: ${{ secrets.NEW_RELIC_LICENSE_KEY }}
5 changes: 2 additions & 3 deletions .github/workflows/pr-project-board.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ on:
pull_request_target:
types: [opened]
paths:
- 'quickstarts/**'

- "quickstarts/**"

env:
GITHUB_TOKEN: ${{ secrets.OPENSOURCE_BOT_TOKEN }}
Expand All @@ -15,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744

- name: Move PR to Project Board for triage
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/preview-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744

- name: Setup workspace
uses: './.github/actions/bootstrap'
uses: "./.github/actions/bootstrap"

- name: Create preview links
id: links
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
with:
token: ${{ secrets.OPENSOURCE_BOT_TOKEN }}
ref: "main"
fetch-depth: 0

- name: Setup workspace
uses: './.github/actions/bootstrap'
uses: "./.github/actions/bootstrap"

- name: Generate schema docs for GraphQl
id: generate-schema
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Temporarily disable branch protections
id: disable-branch-protection
if: always()
uses: actions/github-script@v6
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
with:
github-token: ${{ secrets.OPENSOURCE_BOT_TOKEN }}
script: |
Expand All @@ -65,7 +65,7 @@ jobs:
- name: Re-enable branch protections
id: enable-branch-protection
if: always()
uses: actions/github-script@v6
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
with:
github-token: ${{ secrets.OPENSOURCE_BOT_TOKEN }}
script: |
Expand Down Expand Up @@ -110,12 +110,12 @@ jobs:
# Checkout fetch-depth: 2 because there's a check to see if package.json
# was updated, and need at least 2 commits for the check to function properly
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
with:
fetch-depth: 2

- name: Setup workspace
uses: './.github/actions/bootstrap'
uses: "./.github/actions/bootstrap"

- name: Install OSS CLI
working-directory: ./utils
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/repolinter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ jobs:
steps:
- name: Test Default Branch
id: default-branch
uses: actions/github-script@v6
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
with:
script: |
const data = await github.rest.repos.get(context.repo)
return data.data && data.data.default_branch === context.ref.split('/').slice(-1)[0]
- name: Checkout Self
if: ${{ steps.default-branch.outputs.result == 'true' }}
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
- name: Run Repolinter
if: ${{ steps.default-branch.outputs.result == 'true' }}
uses: newrelic/repolinter-action@v1
uses: newrelic/repolinter-action@3f4448f855c351e9695b24524a4111c7847b84cb
with:
config_url: https://raw.githubusercontent.com/newrelic/.github/main/repolinter-rulesets/community-project.yml
output_type: issue
20 changes: 10 additions & 10 deletions .github/workflows/reusable.quickstart_submission.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
# Ensure we have the most recent commit to `main`
with:
ref: "main"
fetch-depth: 0

- name: Setup workspace
uses: './.github/actions/bootstrap'
uses: "./.github/actions/bootstrap"

- name: Update install plans
env:
Expand All @@ -55,14 +55,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
# Ensure we have the most recent commit to `main`
with:
ref: "main"
fetch-depth: 0

- name: Setup workspace
uses: './.github/actions/bootstrap'
uses: "./.github/actions/bootstrap"

- name: Update data sources
env:
Expand All @@ -80,14 +80,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
# Ensure we have the most recent commit to `main`
with:
ref: "main"
fetch-depth: 0

- name: Setup workspace
uses: './.github/actions/bootstrap'
uses: "./.github/actions/bootstrap"

- name: Update quickstarts
env:
Expand All @@ -105,14 +105,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
# Ensure we have the most recent commit to `main`
with:
ref: "main"
fetch-depth: 0

- name: Setup workspace
uses: './.github/actions/bootstrap'
uses: "./.github/actions/bootstrap"

- name: Update dashboards with required datasources from quickstarts
env:
Expand All @@ -130,14 +130,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
# Ensure we have the most recent commit to `main`
with:
ref: "main"
fetch-depth: 0

- name: Setup workspace
uses: './.github/actions/bootstrap'
uses: "./.github/actions/bootstrap"

- name: Update dashboards with required datasources from quickstarts
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744

- name: Setup workspace
uses: './.github/actions/bootstrap'
uses: "./.github/actions/bootstrap"

- name: Run tests
run: cd utils && yarn test
2 changes: 1 addition & 1 deletion .github/workflows/stale-message.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v7
- uses: actions/stale@6f05e4244c9a0b2ed3401882b05d701dd0a7289b
with:
stale-issue-message: "Old issues will be closed after 105 days of inactivity. This issue has been quiet for 90 days and is being marked as stale. Reply here to keep this issue open."
close-issue-message: "This issue is being closed due to inactivity. Is this a mistake? Please re-open this issue or create a new one."
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/submit-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Having it setup this way allows us to have manual approval for this workflow run, and then the subsequent triggered runs can access secrets in the repository for validation (even for forked PRs).
name: Submit Gate

on:
on:
pull_request:
branches:
- release
Expand All @@ -21,6 +21,6 @@ jobs:
run: echo "${{ github.event.pull_request.number }}" > pr_number_submit.txt

- name: upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
with:
path: pr_number_submit.txt
10 changes: 5 additions & 5 deletions .github/workflows/validate_data_sources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: dawidd6/action-download-artifact@v2
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e
with:
workflow: validation_gate.yml
run_id: ${{ github.event.workflow_run.id }}
Expand All @@ -24,12 +24,12 @@ jobs:
echo "pr-number=$PR_NUMBER" >> $GITHUB_ENV

- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
with:
ref: "refs/pull/${{ env.pr-number }}/merge"

- name: Setup workspace
uses: './.github/actions/bootstrap'
uses: "./.github/actions/bootstrap"

- name: Validate new files
id: validation
Expand All @@ -50,7 +50,7 @@ jobs:

- name: Add commit status
if: always()
uses: './.github/actions/add-commit-status'
uses: "./.github/actions/add-commit-status"
with:
statusContext: "Validation / Data source schema compliance"
state: ${{ job.status }}
state: ${{ job.status }}
Loading
Loading