Skip to content

Commit 3cd5ecc

Browse files
ci(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1fda4f2 commit 3cd5ecc

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-24.04
2828
steps:
2929
- name: Checkout the repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
persist-credentials: 'false'
3333
- name: Bootstrap repository
@@ -44,14 +44,14 @@ jobs:
4444
contents: write
4545
steps:
4646
- name: Checkout the repository
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v5
4848
# Necessary for hooks to succeed during tests for commits/schedule
4949
if: github.event_name != 'pull_request'
5050
with:
5151
fetch-depth: 0
5252
persist-credentials: 'false'
5353
- name: Checkout the repository
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v5
5555
# Necessary for hooks to succeed during tests for PRs
5656
if: github.event_name == 'pull_request'
5757
with:
@@ -121,7 +121,7 @@ jobs:
121121
exit 1
122122
fi
123123
- name: Checkout the repository
124-
uses: actions/checkout@v4
124+
uses: actions/checkout@v5
125125
- name: Scan workflow logs for warnings and errors
126126
run: scripts/scan_workflow_logs.sh ${{ github.run_id }}
127127
env:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
tag: ${{ steps.release.outputs.tag }}
2222
steps:
2323
- name: Checkout the repository
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0
2727
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout the repository
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
persist-credentials: 'false'
2727
- name: Bootstrap repository

.github/workflows/update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
pull-requests: write
2323
steps:
2424
- name: Checkout the repository
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
persist-credentials: 'false'
2828
- name: Bootstrap repository

0 commit comments

Comments
 (0)