Skip to content

Commit 7074eca

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 6412e42 commit 7074eca

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout code
11-
uses: actions/checkout@v5
11+
uses: actions/checkout@v6
1212
- name: Install Go
1313
uses: actions/setup-go@v6
1414
with:
@@ -27,7 +27,7 @@ jobs:
2727
working-directory: ${{ env.WORKSPACE }}
2828
steps:
2929
- name: Checkout code
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
with:
3232
path: ${{ env.WORKSPACE }}
3333
- name: Install Go
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545
steps:
4646
- name: Checkout code
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v6
4848
with:
4949
# https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches
5050
fetch-depth: 0
@@ -60,7 +60,7 @@ jobs:
6060
runs-on: ubuntu-latest
6161
steps:
6262
- name: Checkout code
63-
uses: actions/checkout@v5
63+
uses: actions/checkout@v6
6464
- name: Install Go
6565
uses: actions/setup-go@v6
6666
with:
@@ -72,7 +72,7 @@ jobs:
7272
runs-on: ubuntu-latest
7373
steps:
7474
- name: Checkout code
75-
uses: actions/checkout@v5
75+
uses: actions/checkout@v6
7676
with:
7777
# https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches
7878
fetch-depth: 0

.github/workflows/push-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout code
11-
uses: actions/checkout@v5
11+
uses: actions/checkout@v6
1212
with:
1313
# https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches
1414
fetch-depth: 0

.github/workflows/sync-api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
working-directory: ${{ env.WORKSPACE }}
2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
with:
2424
token: ${{ secrets.CLUSTERPEDIA_BOT_TOKEN }}
2525
path: ${{ env.WORKSPACE }}

.github/workflows/verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
working-directory: ${{ env.WORKSPACE }}
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
2020
path: ${{ env.WORKSPACE }}
2121
- run: hack/verify-forked-code.sh

0 commit comments

Comments
 (0)