Skip to content

Commit b177289

Browse files
dependabot[bot]Copilotshenxianpeng2bndy5
authored
chore(deps): bump actions/checkout from 5 to 6 in the actions group (#375)
* chore(deps): 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> * Pin actions/checkout to commit hash with version comment (#376) * Initial plan * Add version comments to actions/checkout references Co-authored-by: shenxianpeng <3353385+shenxianpeng@users.noreply.github.com> * Move version comments to inline format Co-authored-by: shenxianpeng <3353385+shenxianpeng@users.noreply.github.com> * Revert examples folder changes and use commit hash in comments Co-authored-by: shenxianpeng <3353385+shenxianpeng@users.noreply.github.com> * Use commit hash as reference and version tag as comment Co-authored-by: shenxianpeng <3353385+shenxianpeng@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: shenxianpeng <3353385+shenxianpeng@users.noreply.github.com> * do not persist git credentials when not needed and make explicit when we do need it --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: shenxianpeng <3353385+shenxianpeng@users.noreply.github.com> Co-authored-by: Brendan <2bndy5@gmail.com>
1 parent 12018a1 commit b177289

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/cpp-linter.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ jobs:
1313
cpp-linter:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
17+
with:
18+
persist-credentials: false
1719
- uses: cpp-linter/cpp-linter-action@main
1820
id: linter
1921
continue-on-error: true

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ jobs:
2222
re-tag:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2626
with:
27+
persist-credentials: true # needed for `git push`
2728
fetch-depth: 0
2829
ref: ${{ inputs.ref }}
2930
- name: Config git name and email

.github/workflows/self-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ jobs:
3939
runs-on: ${{ matrix.os }}
4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
43+
with:
44+
persist-credentials: false
4345

4446
- name: Cache the build artifacts
4547
id: cache-build

0 commit comments

Comments
 (0)