Skip to content

Commit 70cd330

Browse files
🌱 Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 5c15738 commit 70cd330

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
working-directory:
1414
- ""
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- name: golangci-lint
1818
uses: golangci/golangci-lint-action@v6
1919
with:

.github/workflows/image_build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout code
10-
uses: actions/checkout@v5
10+
uses: actions/checkout@v6
1111
- name: build image
1212
shell: bash
1313
env:

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
go-version: ${{ matrix.go-version }}
1616
- name: Checkout code
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
- name: Test
1919
run: make test
2020
- name: Build
@@ -31,6 +31,6 @@ jobs:
3131
uses: actions/setup-go@v6
3232
with:
3333
go-version: ${{ matrix.go-version }}
34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v6
3535
- name: verify
3636
run: make verify

0 commit comments

Comments
 (0)