Skip to content

Commit eba3dd1

Browse files
ci(deps): bump actions/checkout from 5 to 6 (#77)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jon Zeolla <[email protected]>
1 parent ebfac45 commit eba3dd1

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
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@v5
30+
uses: actions/checkout@v6
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@v5
47+
uses: actions/checkout@v6
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@v5
54+
uses: actions/checkout@v6
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@v5
124+
uses: actions/checkout@v6
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@v5
24+
uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0
2727
token: ${{ secrets.GITHUB_TOKEN }}

.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@v5
25+
uses: actions/checkout@v6
2626
with:
2727
persist-credentials: 'false'
2828
- name: Bootstrap repository

{{cookiecutter.project_name|replace(" ", "")}}/.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
contents: write
2424
steps:
2525
- name: Checkout the repository
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
persist-credentials: 'false'
2929
- name: Bootstrap repository
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ubuntu-24.04
5151
steps:
5252
- name: Checkout the repository
53-
uses: actions/checkout@v5
53+
uses: actions/checkout@v6
5454
with:
5555
persist-credentials: 'false'
5656
- name: Bootstrap repository
@@ -72,7 +72,7 @@ jobs:
7272
- linux/arm64
7373
steps:
7474
- name: Checkout code
75-
uses: actions/checkout@v5
75+
uses: actions/checkout@v6
7676
with:
7777
persist-credentials: 'false'
7878
- name: Bootstrap repository
@@ -147,7 +147,7 @@ jobs:
147147
exit 1
148148
fi
149149
- name: Checkout the repository
150-
uses: actions/checkout@v5
150+
uses: actions/checkout@v6
151151
- name: Scan workflow logs for warnings and errors
152152
run: scripts/scan_workflow_logs.sh {% raw %}${{ github.run_id }}{% endraw %}
153153
env:

{{cookiecutter.project_name|replace(" ", "")}}/.github/workflows/commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-24.04
2020
steps:
2121
- name: Checkout the repository
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
with:
2424
persist-credentials: 'false'
2525
- name: Bootstrap repository
@@ -40,7 +40,7 @@ jobs:
4040
- linux/arm64
4141
steps:
4242
- name: Checkout the repository
43-
uses: actions/checkout@v5
43+
uses: actions/checkout@v6
4444
with:
4545
fetch-depth: 0
4646
persist-credentials: 'false'

{{cookiecutter.project_name|replace(" ", "")}}/.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
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@v5
24+
uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0
2727
persist-credentials: 'false'
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-24.04
5757
steps:
5858
- name: Checkout the repository
59-
uses: actions/checkout@v5
59+
uses: actions/checkout@v6
6060
with:
6161
fetch-depth: 0
6262
ref: ${{ "{{ needs.release.outputs.tag }}" }}

{{cookiecutter.project_name|replace(" ", "")}}/.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout the repository
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
persist-credentials: 'false'
3737
- name: Bootstrap repository

{{cookiecutter.project_name|replace(" ", "")}}/.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@v5
25+
uses: actions/checkout@v6
2626
with:
2727
persist-credentials: 'false'
2828
- name: Bootstrap repository

0 commit comments

Comments
 (0)