Skip to content

Commit a71d373

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] <support@github.com>
1 parent 6d1d5b7 commit a71d373

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/on-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
deploy:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v5
10+
- uses: actions/checkout@v6
1111

1212
- name: Setup Hugo
1313
uses: peaceiris/actions-hugo@v3
@@ -42,7 +42,7 @@ jobs:
4242
app-id: ${{ secrets.AGENCY_RELEASER_ID }}
4343
private-key: ${{ secrets.AGENCY_RELEASER_KEY }}
4444
- name: checkout
45-
uses: actions/checkout@v5
45+
uses: actions/checkout@v6
4646
with:
4747
ref: master
4848
token: ${{ steps.generate_token.outputs.token }}

.github/workflows/pr-target.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- id: label-the-PR
1616
uses: actions/labeler@v6
1717
# Add comment to trigger notification
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
if: contains(steps.label-the-PR.outputs.all-labels, 'dev')
2020
- name: Add comment to PR
2121
if: contains(steps.label-the-PR.outputs.all-labels, 'dev')

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
license-check:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v5
7+
- uses: actions/checkout@v6
88
- uses: actions/setup-node@v6
99
with:
1010
node-version: "18.x"
@@ -16,7 +16,7 @@ jobs:
1616
build:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020

2121
- name: Setup Hugo
2222
uses: peaceiris/actions-hugo@v3

0 commit comments

Comments
 (0)