Skip to content

Commit 9f2618d

Browse files
chore(deps): update actions/checkout action to v4 (#88)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 532a9ee commit 9f2618d

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/on_prerelease.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Run unit tests on *Nix
2020
runs-on: ubuntu-20.04
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- name: Login to DockerHub
2424
uses: docker/login-action@v2
2525
with:
@@ -38,7 +38,7 @@ jobs:
3838
working-directory: src/github.com/${{env.ORIGINAL_REPO_NAME}}
3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242
with:
4343
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
4444
- name: Install Go
@@ -60,7 +60,7 @@ jobs:
6060
working-directory: src/github.com/${{env.ORIGINAL_REPO_NAME}}
6161
steps:
6262
- name: Check out code
63-
uses: actions/checkout@v3
63+
uses: actions/checkout@v4
6464
with:
6565
fetch-depth: 1
6666
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
@@ -76,7 +76,7 @@ jobs:
7676
runs-on: ubuntu-20.04
7777
needs: [test-nix, test-windows]
7878
steps:
79-
- uses: actions/checkout@v3
79+
- uses: actions/checkout@v4
8080
- name: Login to DockerHub
8181
uses: docker/login-action@v2
8282
with:
@@ -112,7 +112,7 @@ jobs:
112112
test-upgrade: [true,false]
113113
steps:
114114
- name: Checkout
115-
uses: actions/checkout@v3
115+
uses: actions/checkout@v4
116116
with:
117117
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
118118
- name: Get PFX certificate from GH secrets

.github/workflows/push_pr.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Run all static analysis checks
2020
runs-on: ubuntu-20.04
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- uses: newrelic/newrelic-infra-checkers@v1
2424
- name: Semgrep
2525
uses: returntocorp/semgrep-action@v1
@@ -37,7 +37,7 @@ jobs:
3737
name: Run unit tests on *Nix
3838
runs-on: ubuntu-20.04
3939
steps:
40-
- uses: actions/checkout@v3
40+
- uses: actions/checkout@v4
4141
- name: Login to DockerHub
4242
if: ${{env.DOCKER_LOGIN_AVAILABLE}}
4343
uses: docker/login-action@v2
@@ -57,7 +57,7 @@ jobs:
5757
working-directory: src/github.com/${{env.ORIGINAL_REPO_NAME}}
5858
steps:
5959
- name: Checkout
60-
uses: actions/checkout@v3
60+
uses: actions/checkout@v4
6161
with:
6262
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
6363
- name: Install Go
@@ -79,7 +79,7 @@ jobs:
7979
working-directory: src/github.com/${{env.ORIGINAL_REPO_NAME}}
8080
steps:
8181
- name: Check out code
82-
uses: actions/checkout@v3
82+
uses: actions/checkout@v4
8383
with:
8484
fetch-depth: 1
8585
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
@@ -94,7 +94,7 @@ jobs:
9494
name: Test binary compilation for all platforms:arch
9595
runs-on: ubuntu-20.04
9696
steps:
97-
- uses: actions/checkout@v3
97+
- uses: actions/checkout@v4
9898
- name: Login to DockerHub
9999
if: ${{env.DOCKER_LOGIN_AVAILABLE}}
100100
uses: docker/login-action@v2

.github/workflows/repolinter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
return data.data && data.data.default_branch === context.ref.split('/').slice(-1)[0]
2323
- name: Checkout Self
2424
if: ${{ steps.default-branch.outputs.result == 'true' }}
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626
- name: Run Repolinter
2727
if: ${{ steps.default-branch.outputs.result == 'true' }}
2828
uses: newrelic/repolinter-action@v1

.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: Run Trivy vulnerability scanner in repo mode
2222
uses: aquasecurity/trivy-action@0.12.0

0 commit comments

Comments
 (0)