Skip to content

Commit cfd0350

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 f2241b3 commit cfd0350

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/polish-the-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# Limit the running time
3030
timeout-minutes: 10
3131
steps:
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333
with:
3434
ref: ${{ github.event.pull_request.head.sha }} # checkout PR HEAD commit
3535
fetch-depth: 0 # required for merge-base check

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ runs:
5252
shell: bash
5353

5454
- name: Checkout code
55-
uses: actions/checkout@v5
55+
uses: actions/checkout@v6
5656
with:
5757
ref: ${{ github.ref }} # Fetch latest changes (even by previous job)
5858
fetch-depth: 0 # Fetch all history for all branches and tags. Otherwise github.event.pull_request.base.ref SHA isn't found.

0 commit comments

Comments
 (0)