Skip to content

Commit

Permalink
Merge pull request #2453 from newrelic/andrew/NR-282993-pin-actions-t…
Browse files Browse the repository at this point in the history
…o-sha

Pin actions to commit SHA
  • Loading branch information
Andrew Anguiano authored Jun 26, 2024
2 parents 7218c6e + 68445b8 commit 52a0ad5
Show file tree
Hide file tree
Showing 16 changed files with 76 additions and 78 deletions.
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
2 changes: 1 addition & 1 deletion .github/workflows/pr-merged.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ 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"
Expand Down
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ 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

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 }}
10 changes: 5 additions & 5 deletions .github/workflows/validate_install_plans.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 @@ -49,7 +49,7 @@ jobs:
cd utils && yarn create-validate-install-plans $URL $DRY_RUN
- name: Add commit status
if: always()
uses: './.github/actions/add-commit-status'
uses: "./.github/actions/add-commit-status"
with:
statusContext: "Validation / Install plan schema compliance"
state: ${{ job.status }}
state: ${{ job.status }}
Loading

0 comments on commit 52a0ad5

Please sign in to comment.