Skip to content

Commit ee5e60b

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

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/prerelease.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: Run unit tests on *Nix
2121
runs-on: ubuntu-22.04
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
- name: Login to DockerHub
2525
uses: docker/login-action@v2
2626
with:
@@ -39,7 +39,7 @@ jobs:
3939
working-directory: src/github.com/${{env.ORIGINAL_REPO_NAME}}
4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@v3
42+
uses: actions/checkout@v4
4343
with:
4444
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
4545
- name: Install Go
@@ -59,7 +59,7 @@ jobs:
5959
working-directory: src/github.com/${{env.ORIGINAL_REPO_NAME}}
6060
steps:
6161
- name: Check out code
62-
uses: actions/checkout@v3
62+
uses: actions/checkout@v4
6363
with:
6464
fetch-depth: 1
6565
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
@@ -77,7 +77,7 @@ jobs:
7777
runs-on: ubuntu-22.04
7878
needs: [test-nix, test-windows, test-integration-nix]
7979
steps:
80-
- uses: actions/checkout@v3
80+
- uses: actions/checkout@v4
8181
- name: Login to DockerHub
8282
uses: docker/login-action@v2
8383
with:
@@ -113,7 +113,7 @@ jobs:
113113
test-upgrade: [true,false]
114114
steps:
115115
- name: Checkout
116-
uses: actions/checkout@v3
116+
uses: actions/checkout@v4
117117
with:
118118
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
119119
- 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
@@ -20,7 +20,7 @@ jobs:
2020
name: Run all static analysis checks
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
- uses: actions/setup-go@v4
2525
with:
2626
go-version-file: go.mod
@@ -44,7 +44,7 @@ jobs:
4444
name: Run unit tests on *Nix
4545
runs-on: ubuntu-latest
4646
steps:
47-
- uses: actions/checkout@v3
47+
- uses: actions/checkout@v4
4848
- name: Login to DockerHub
4949
if: ${{env.DOCKER_LOGIN_AVAILABLE}}
5050
uses: docker/login-action@v2
@@ -64,7 +64,7 @@ jobs:
6464
working-directory: src/github.com/${{ env.ORIGINAL_REPO_NAME }}
6565
steps:
6666
- name: Checkout
67-
uses: actions/checkout@v3
67+
uses: actions/checkout@v4
6868
with:
6969
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
7070
- name: Install Go
@@ -83,7 +83,7 @@ jobs:
8383
working-directory: src/github.com/${{env.ORIGINAL_REPO_NAME}}
8484
steps:
8585
- name: Check out code
86-
uses: actions/checkout@v3
86+
uses: actions/checkout@v4
8787
with:
8888
fetch-depth: 1
8989
path: src/github.com/${{env.ORIGINAL_REPO_NAME}}
@@ -141,7 +141,7 @@ jobs:
141141
goarch: [amd64,386]
142142
steps:
143143
- name: Checkout
144-
uses: actions/checkout@v3
144+
uses: actions/checkout@v4
145145
with:
146146
path: src/github.com/${{ env.ORIGINAL_REPO_NAME }}
147147
- shell: bash

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

0 commit comments

Comments
 (0)