Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 19, 2023
1 parent 276a05f commit 33d1e2a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Run unit tests on *Nix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Unit tests
run: make ci/test

Expand All @@ -33,7 +33,7 @@ jobs:
working-directory: src/github.com/${{ env.ORIGINAL_REPO_NAME }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: src/github.com/${{ env.ORIGINAL_REPO_NAME }}
- name: Install Go
Expand All @@ -54,7 +54,7 @@ jobs:
working-directory: src/github.com/${{ env.ORIGINAL_REPO_NAME }}
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
path: src/github.com/${{ env.ORIGINAL_REPO_NAME }}
Expand All @@ -72,7 +72,7 @@ jobs:
runs-on: ubuntu-latest
needs: [test-nix, test-windows, test-integration-nix]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Pre release
run: make ci/prerelease
env:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
test-upgrade: [false]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: src/github.com/${{ env.ORIGINAL_REPO_NAME }}
- name: Get PFX certificate from GH secrets
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/push_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Run all static analysis checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: newrelic/newrelic-infra-checkers@v1
- name: Semgrep
uses: returntocorp/semgrep-action@v1
Expand All @@ -36,7 +36,7 @@ jobs:
name: Run unit tests on *Nix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Unit tests
run: make ci/test

Expand All @@ -50,7 +50,7 @@ jobs:
working-directory: src/github.com/${{ env.ORIGINAL_REPO_NAME }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: src/github.com/${{ env.ORIGINAL_REPO_NAME }}
- name: Install Go
Expand All @@ -70,7 +70,7 @@ jobs:
working-directory: src/github.com/${{ env.ORIGINAL_REPO_NAME }}
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
path: src/github.com/${{ env.ORIGINAL_REPO_NAME }}
Expand All @@ -91,7 +91,7 @@ jobs:
GPG_PASSPHRASE: ${{ secrets.OHAI_GPG_PASSPHRASE }}
GPG_PRIVATE_KEY_BASE64: ${{ secrets.OHAI_GPG_PRIVATE_KEY_BASE64 }} # base64 encoded
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
git tag "$TAG"
if [ -z "$GPG_PASSPHRASE" ]; then
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
goarch: [amd64,386]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: src/github.com/${{ env.ORIGINAL_REPO_NAME }}
- shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/repolinter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
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@v4
- name: Run Repolinter
if: ${{ steps.default-branch.outputs.result == 'true' }}
uses: newrelic/repolinter-action@v1
Expand Down

0 comments on commit 33d1e2a

Please sign in to comment.