Skip to content

Commit e0010e3

Browse files
ci(deps): bump actions/checkout from 4 to 5 (#53)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonZeolla <[email protected]>
1 parent afa5f25 commit e0010e3

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.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)