Skip to content

Commit 9fda271

Browse files
Bump actions/checkout from 5 to 6 in the actions group (#474)
Bumps the actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `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 dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> * do not persist git credentials when not needed --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Brendan <2bndy5@gmail.com>
1 parent 38a09b4 commit 9fda271

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ jobs:
2525
- "3.12"
2626
- "3.13"
2727
steps:
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
29+
with:
30+
persist-credentials: false
2931
- uses: astral-sh/setup-uv@v7
3032
with:
3133
enable-cache: false
@@ -44,7 +46,9 @@ jobs:
4446
- python-version: "3.x"
4547
node-version: "20.x"
4648
steps:
47-
- uses: actions/checkout@v5
49+
- uses: actions/checkout@v6
50+
with:
51+
persist-credentials: false
4852
- name: Setup Node.js
4953
uses: actions/setup-node@v6
5054
with:
@@ -81,8 +85,9 @@ jobs:
8185
- '20.x'
8286
runs-on: ${{ matrix.os }}
8387
steps:
84-
- uses: actions/checkout@v5
88+
- uses: actions/checkout@v6
8589
with:
90+
persist-credentials: false
8691
# Need full history to determine version number.
8792
fetch-depth: 0
8893
- name: Use Node.js ${{ matrix.node-version }}
@@ -161,7 +166,9 @@ jobs:
161166
- '20.x'
162167
runs-on: ${{ matrix.os }}
163168
steps:
164-
- uses: actions/checkout@v5
169+
- uses: actions/checkout@v6
170+
with:
171+
persist-credentials: false
165172
- uses: actions/setup-node@v6
166173
with:
167174
node-version: ${{ matrix.node-version }}
@@ -206,7 +213,9 @@ jobs:
206213
needs: [test]
207214
runs-on: ubuntu-latest
208215
steps:
209-
- uses: actions/checkout@v5
216+
- uses: actions/checkout@v6
217+
with:
218+
persist-credentials: false
210219
- name: Download all artifacts
211220
uses: actions/download-artifact@v6
212221
with:
@@ -284,8 +293,10 @@ jobs:
284293
user: __token__
285294
password: ${{ secrets.pypi_token }}
286295
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
287-
- uses: actions/checkout@v5
296+
- uses: actions/checkout@v6
288297
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
298+
with:
299+
persist-credentials: false
289300
- name: Create a Github Release
290301
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
291302
env:

0 commit comments

Comments
 (0)