Skip to content

Commit 55a1bcc

Browse files
chore(deps): update actions/checkout action to v4
1 parent d89566f commit 55a1bcc

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/prerelease.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Run security checks via snyk
2020
runs-on: ubuntu-22.04
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
- name: Login to DockerHub
2424
uses: docker/login-action@v1
2525
with:
@@ -34,7 +34,7 @@ jobs:
3434
name: Run unit tests on *Nix
3535
runs-on: ubuntu-22.04
3636
steps:
37-
- uses: actions/checkout@v2
37+
- uses: actions/checkout@v4
3838
- name: Login to DockerHub
3939
uses: docker/login-action@v1
4040
with:
@@ -53,7 +53,7 @@ jobs:
5353
working-directory: src/github.com/${{env.ORIGINAL_REPO_NAME}}
5454
steps:
5555
- name: Checkout
56-
uses: actions/checkout@v2
56+
uses: actions/checkout@v4
5757
with:
5858
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
5959
- name: Install Go
@@ -73,7 +73,7 @@ jobs:
7373
working-directory: src/github.com/${{env.ORIGINAL_REPO_NAME}}
7474
steps:
7575
- name: Check out code
76-
uses: actions/checkout@v2
76+
uses: actions/checkout@v4
7777
with:
7878
fetch-depth: 1
7979
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
@@ -96,7 +96,7 @@ jobs:
9696
runs-on: ubuntu-22.04
9797
needs: [test-nix, test-windows, test-integration-nix, snyk]
9898
steps:
99-
- uses: actions/checkout@v2
99+
- uses: actions/checkout@v4
100100
- name: Login to DockerHub
101101
uses: docker/login-action@v1
102102
with:
@@ -132,7 +132,7 @@ jobs:
132132
test-upgrade: [true,false]
133133
steps:
134134
- name: Checkout
135-
uses: actions/checkout@v2
135+
uses: actions/checkout@v4
136136
with:
137137
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
138138
- name: Get PFX certificate from GH secrets

.github/workflows/push_pr.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Run all static analysis checks
1919
runs-on: ubuntu-22.04
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- uses: newrelic/newrelic-infra-checkers@v1
2323
- name: golangci-lint
2424
uses: golangci/golangci-lint-action@v3
@@ -34,7 +34,7 @@ jobs:
3434
env:
3535
SNYK_TOKEN: ${{ secrets.COREINT_SNYK_TOKEN }}
3636
steps:
37-
- uses: actions/checkout@v2
37+
- uses: actions/checkout@v4
3838
- name: Login to DockerHub
3939
if: ${{env.DOCKER_LOGIN_AVAILABLE}}
4040
uses: docker/login-action@v1
@@ -49,7 +49,7 @@ jobs:
4949
name: Run unit tests on *Nix
5050
runs-on: ubuntu-22.04
5151
steps:
52-
- uses: actions/checkout@v2
52+
- uses: actions/checkout@v4
5353
- name: Login to DockerHub
5454
if: ${{env.DOCKER_LOGIN_AVAILABLE}}
5555
uses: docker/login-action@v1
@@ -69,7 +69,7 @@ jobs:
6969
working-directory: src/github.com/${{ env.ORIGINAL_REPO_NAME }}
7070
steps:
7171
- name: Checkout
72-
uses: actions/checkout@v2
72+
uses: actions/checkout@v4
7373
with:
7474
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
7575
- name: Install Go
@@ -89,7 +89,7 @@ jobs:
8989
working-directory: src/github.com/${{env.ORIGINAL_REPO_NAME}}
9090
steps:
9191
- name: Check out code
92-
uses: actions/checkout@v2
92+
uses: actions/checkout@v4
9393
with:
9494
fetch-depth: 1
9595
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
@@ -112,7 +112,7 @@ jobs:
112112
name: Test binary compilation for all platforms:arch
113113
runs-on: ubuntu-22.04
114114
steps:
115-
- uses: actions/checkout@v2
115+
- uses: actions/checkout@v4
116116
- name: Login to DockerHub
117117
if: ${{env.DOCKER_LOGIN_AVAILABLE}}
118118
uses: docker/login-action@v1

.github/workflows/repolinter.yml

+1-1
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@v2
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

+1-1
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/[email protected]

0 commit comments

Comments
 (0)