Skip to content

Commit e13ad1d

Browse files
chore(deps): bump actions/checkout from 5 to 6 (#4550)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c9c8f59 commit e13ad1d

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
pull-requests: write # for peter-evans/create-pull-request to create a PR
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818
- name: Update Changelog

.github/workflows/codeql.yml

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

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131

3232
# Initializes the CodeQL tools for scanning.
3333
- name: Initialize CodeQL

.github/workflows/gh-pages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
contents: write # for peaceiris/actions-gh-pages to push pages branch
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
- name: Setup Python
2323
uses: actions/setup-python@v5
2424
with:

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
go-version: ${{ env.GOLANG_VERSION }}
3333
- name: Checkout code
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
- name: Run golangci-lint
3636
uses: golangci/golangci-lint-action@v8
3737
with:
@@ -48,7 +48,7 @@ jobs:
4848
id: go
4949

5050
- name: Check out code into the Go module directory
51-
uses: actions/checkout@v5
51+
uses: actions/checkout@v6
5252

5353
- name: Restore go build cache
5454
uses: actions/cache@v4
@@ -70,7 +70,7 @@ jobs:
7070
GOPATH: /home/runner/go
7171
steps:
7272
- name: Checkout code
73-
uses: actions/checkout@v5
73+
uses: actions/checkout@v6
7474
- name: Setup Golang
7575
uses: actions/[email protected]
7676
with:

.github/workflows/image-reuse.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ jobs:
5858
image-digest: ${{ steps.image.outputs.digest }}
5959
steps:
6060
- name: Checkout code
61-
uses: actions/checkout@v5 # v3.3.0
61+
uses: actions/checkout@v6 # v3.3.0
6262
with:
6363
fetch-depth: 0
6464
token: ${{ secrets.GITHUB_TOKEN }}
6565
if: ${{ github.ref_type == 'tag'}}
6666

6767
- name: Checkout code
68-
uses: actions/checkout@v5 # v3.3.0
68+
uses: actions/checkout@v6 # v3.3.0
6969
if: ${{ github.ref_type != 'tag'}}
7070

7171
- name: Setup Golang

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484

8585
steps:
8686
- name: Checkout
87-
uses: actions/checkout@v5 # v3.5.2
87+
uses: actions/checkout@v6 # v3.5.2
8888
with:
8989
fetch-depth: 0
9090
token: ${{ secrets.GITHUB_TOKEN }}
@@ -157,7 +157,7 @@ jobs:
157157
runs-on: ubuntu-latest
158158
steps:
159159
- name: Checkout code
160-
uses: actions/checkout@v5 # v3.3.0
160+
uses: actions/checkout@v6 # v3.3.0
161161
with:
162162
fetch-depth: 0
163163
token: ${{ secrets.GITHUB_TOKEN }}
@@ -230,7 +230,7 @@ jobs:
230230
runs-on: ubuntu-latest
231231
steps:
232232
- name: Checkout code
233-
uses: actions/checkout@v5 # v3.3.0
233+
uses: actions/checkout@v6 # v3.3.0
234234
with:
235235
fetch-depth: 0
236236
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/testing.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
id: go
4444

4545
- name: Check out code into the Go module directory
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747

4848
- name: Restore go build cache
4949
uses: actions/cache@v4
@@ -90,7 +90,7 @@ jobs:
9090
uses: actions/[email protected]
9191
with:
9292
go-version: '1.24'
93-
- uses: actions/checkout@v5
93+
- uses: actions/checkout@v6
9494
- name: Setup k3s
9595
env:
9696
INSTALL_K3S_CHANNEL: v${{ matrix.kubernetes.version }}
@@ -162,7 +162,7 @@ jobs:
162162
with:
163163
go-version: ${{ env.GOLANG_VERSION }}
164164
id: go
165-
- uses: actions/checkout@v5
165+
- uses: actions/checkout@v6
166166
- name: Get e2e code coverage
167167
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
168168
with:

0 commit comments

Comments
 (0)