Skip to content

Commit 9151333

Browse files
chore: bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 44e20c6 commit 9151333

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build-test-lint.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
with:
1010
go-version: 1.23.x
1111
- name: Check out code into the Go module directory
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
- name: Build
1414
run: make build
1515
lint:
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
go-version: 1.23.x
2323
- name: Check out code into the Go module directory
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
- name: Lint
2626
run: make lint
2727
test:
@@ -33,14 +33,14 @@ jobs:
3333
with:
3434
go-version: 1.23.x
3535
- name: Check out code into the Go module directory
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737
- name: Run tests
3838
run: make unit-test
3939
build-image:
4040
runs-on: ubuntu-latest
4141
steps:
4242
- name: Check out code into the Go module directory
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v5
4444
with:
4545
fetch-depth: 0
4646
- name: Build image
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050
needs: build
5151
steps:
52-
- uses: actions/checkout@v4
52+
- uses: actions/checkout@v5
5353
- name: Set up Go
5454
uses: actions/setup-go@v5
5555
with:
@@ -61,7 +61,7 @@ jobs:
6161
runs-on: ubuntu-latest
6262
needs: build
6363
steps:
64-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v5
6565
- name: Set up Go
6666
uses: actions/setup-go@v5
6767
with:

.github/workflows/codeql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
language: [go]
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
- name: Initialize CodeQL
2525
uses: github/codeql-action/init@v3
2626
with:

.github/workflows/image-push-main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
id: repo_name
1313
run: echo ::set-output name=repository::$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
1414
- name: Check out code into the Go module directory
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
- name: Set up QEMU

.github/workflows/image-push-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
id: repo_name
1313
run: echo ::set-output name=repository::$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
1414
- name: Check out code into the Go module directory
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
- name: Set up QEMU

0 commit comments

Comments
 (0)