Skip to content

Commit 968dacb

Browse files
Bump actions/checkout from 5 to 6 (#20)
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> --------- 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 ac03195 commit 968dacb

2 files changed

Lines changed: 20 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ jobs:
1414
with:
1515
python-version: "3.x"
1616

17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
18+
with:
19+
persist-credentials: false
1820

1921
- name: Build wheel
2022
run: pip wheel -w dist --no-deps .
@@ -36,7 +38,9 @@ jobs:
3638
with:
3739
python-version: "3.x"
3840

39-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
42+
with:
43+
persist-credentials: false
4044

4145
- name: Install pre-commit and deps
4246
run: pip install pre-commit -r requirements.txt
@@ -59,16 +63,19 @@ jobs:
5963
tr '_' '-'
6064
) >> $GITHUB_OUTPUT
6165
62-
- uses: actions/checkout@v5
66+
- uses: actions/checkout@v6
67+
with:
68+
persist-credentials: false
6369

6470
- name: Set up Python 3.x
6571
uses: actions/setup-python@v6
6672
with:
6773
python-version: "3.11"
6874

6975
- name: Checkout tools repo
70-
uses: actions/checkout@v5
76+
uses: actions/checkout@v6
7177
with:
78+
persist-credentials: false
7279
repository: adafruit/actions-ci-circuitpython-libs
7380
path: actions-ci
7481

@@ -88,7 +95,9 @@ jobs:
8895
build-docs:
8996
runs-on: ubuntu-latest
9097
steps:
91-
- uses: actions/checkout@v5
98+
- uses: actions/checkout@v6
99+
with:
100+
persist-credentials: false
92101

93102
- name: Set up Python 3.x
94103
uses: actions/setup-python@v6

.github/workflows/release.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,15 @@ jobs:
2424
python-version: "3.x"
2525

2626
- name: Checkout Current Repo
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
with:
29+
persist-credentials: false
2930
fetch-depth: 0
3031

3132
- name: Checkout tools repo
32-
uses: actions/checkout@v5
33+
uses: actions/checkout@v6
3334
with:
35+
persist-credentials: false
3436
repository: adafruit/actions-ci-circuitpython-libs
3537
path: actions-ci
3638

@@ -60,8 +62,9 @@ jobs:
6062
permissions:
6163
id-token: write
6264
steps:
63-
- uses: actions/checkout@v5
65+
- uses: actions/checkout@v6
6466
with:
67+
persist-credentials: false
6568
fetch-depth: 0
6669

6770
- uses: actions/setup-python@v6

0 commit comments

Comments
 (0)