Skip to content

Commit fe4670e

Browse files
build(deps): 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 4fc9b3b commit fe4670e

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/bats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: Bats e2e tests
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727

2828
- name: Setup Bats and bats libs
2929
id: setup-bats

.github/workflows/deploy-github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
concurrency:
4040
group: ${{ github.workflow }}-${{ github.ref }}
4141
steps:
42-
- uses: actions/checkout@v5
42+
- uses: actions/checkout@v6
4343
with:
4444
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
4545

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
id: go
4545

4646
- name: Check out code
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v6
4848

4949
- name: Build
5050
run: |
@@ -73,7 +73,7 @@ jobs:
7373
KUBEPROXY_MODE: ${{ matrix.proxyMode }}
7474
steps:
7575
- name: Check out code
76-
uses: actions/checkout@v5
76+
uses: actions/checkout@v6
7777

7878
- name: Enable ipv4 and ipv6 forwarding
7979
run: |

.github/workflows/periodics.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: Bats e2e tests
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929

3030
- name: Setup Bats and bats libs
3131
id: setup-bats

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: Check out code
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737

3838
- name: Set up QEMU
3939
uses: docker/setup-qemu-action@v3

.github/workflows/test-images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Check out code
33-
uses: actions/checkout@v5
33+
uses: actions/checkout@v6
3434

3535
- name: Set up QEMU
3636
uses: docker/setup-qemu-action@v3

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/setup-go@v6
2727
with:
2828
go-version: ${{ matrix.go-version }}
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
- run: sudo make test
3131
- run: make lint
3232

0 commit comments

Comments
 (0)