Skip to content

Commit 69e81d7

Browse files
authored
Merge pull request #147 from kubernetes-sigs/dependabot/github_actions/actions/checkout-6
🌱 Bump actions/checkout from 5 to 6
2 parents 5c15738 + 70cd330 commit 69e81d7

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)