Skip to content

Commit d6718da

Browse files
Bump actions/checkout from 5 to 6 (#1049)
* Bump actions/checkout from 5 to 6 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> * 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 aa7872e commit d6718da

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/build_linux.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ jobs:
7575
CFLAGS: "-I /usr/local/include"
7676

7777
steps:
78-
- uses: actions/checkout@v5
78+
- uses: actions/checkout@v6
79+
with:
80+
persist-credentials: false
7981

8082
- name: provide toolchain
8183
run: |

.github/workflows/doxygen.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ jobs:
4242
- uses: actions/setup-node@v6
4343
with:
4444
node-version: 24.x
45-
- uses: actions/checkout@v5
45+
- uses: actions/checkout@v6
46+
with:
47+
persist-credentials: false
4648
- name: Install cSpell
4749
run: npm install -g cspell
4850
- run: npx cspell --gitignore --config cspell.config.yaml .

0 commit comments

Comments
 (0)