Skip to content

Commit 61c02bc

Browse files
Bump actions/checkout from 5 to 6 in the actions group (#53)
* Bump actions/checkout from 5 to 6 in the actions group 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 dfd6e4c commit 61c02bc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/cpp-lint-action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
container: ${{ matrix.os == 'ubuntu-latest' && 'ubuntu:latest' || '' }}
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
with:
21+
persist-credentials: false
2122
submodules: ${{ matrix.os != 'ubuntu-latest' }}
2223
repository: cpp-linter/test-cpp-linter-action
2324

.github/workflows/cpp-lint-package.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ jobs:
2121

2222
steps:
2323

24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
with:
26+
persist-credentials: false
2627
submodules: true
2728

2829
- uses: actions/setup-python@v6

0 commit comments

Comments
 (0)