Skip to content

Commit 05a8d1d

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 3ea43e2 commit 05a8d1d

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
go-version: ${{ matrix.go-version }}
1616
- name: Check out code into the Go module directory
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Build
1919
env:
2020
GOARCH: ${{ matrix.goarch }}
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
go-version: 1.24.x
3131
- name: Check out code into the Go module directory
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
- name: Lint
3434
run: make lint
3535
grpc-check:
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
go-version: 1.24.x
4343
- name: Check out code into the Go module directory
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545
- name: Check GRPC
4646
run: make grpc-check
4747
test:
@@ -53,14 +53,14 @@ jobs:
5353
with:
5454
go-version: 1.24.x
5555
- name: Check out code into the Go module directory
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v5
5757
- name: Run tests
5858
run: make test
5959
build-image:
6060
runs-on: ubuntu-latest
6161
steps:
6262
- name: Check out code into the Go module directory
63-
uses: actions/checkout@v4
63+
uses: actions/checkout@v5
6464
with:
6565
fetch-depth: 0
6666
- name: Build image
@@ -69,7 +69,7 @@ jobs:
6969
runs-on: ubuntu-latest
7070
needs: build
7171
steps:
72-
- uses: actions/checkout@v4
72+
- uses: actions/checkout@v5
7373
- name: Set up Go
7474
uses: actions/setup-go@v5
7575
with:
@@ -84,7 +84,7 @@ jobs:
8484
runs-on: ubuntu-latest
8585
needs: build
8686
steps:
87-
- uses: actions/checkout@v4
87+
- uses: actions/checkout@v5
8888
- name: Set up Go
8989
uses: actions/setup-go@v5
9090
with:

.github/workflows/codeql.yml

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.yml

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.yml

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)