Skip to content

Commit 5a86f1d

Browse files
ci(deps): bump actions/checkout from 6.0.1 to 6.0.2 (#613)
* ci(deps): bump actions/checkout from 6.0.1 to 6.0.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.1 to 6.0.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@8e8c483...de0fac2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Add check for ACTIONS_RECURSIVE_PRIVATE_KEY secret Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> * Fix: create-github-app-token step needs ID so we can address its output Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
1 parent 4946089 commit 5a86f1d

7 files changed

Lines changed: 25 additions & 18 deletions

File tree

.github/workflows/auto_merge_prs.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,14 @@ jobs:
1414
uses: step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1
1515
with:
1616
egress-policy: audit
17+
- name: Check that private key is set
18+
run: |
19+
if [ -z "${{ secrets.ACTIONS_RECURSIVE_PRIVATE_KEY }}" ]; then
20+
echo "Error: ACTIONS_RECURSIVE_PRIVATE_KEY secret is not set!"
21+
exit 1
22+
fi
1723
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
24+
id: app-token
1825
with:
1926
app-id: 2754721
2027
private-key: ${{ secrets.ACTIONS_RECURSIVE_PRIVATE_KEY }}

.github/workflows/cargo_hack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1
2727
with:
2828
egress-policy: audit
29-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
29+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3030
with:
3131
persist-credentials: false
3232
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3

.github/workflows/ci.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
egress-policy: audit
3737

3838
- name: 'Checkout Repository'
39-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
39+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4040
with:
4141
persist-credentials: false
4242
- name: 'Dependency Review'
@@ -78,7 +78,7 @@ jobs:
7878
with:
7979
egress-policy: audit
8080

81-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
81+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
8282
with:
8383
persist-credentials: false
8484
- run: rustup toolchain add ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
@@ -110,7 +110,7 @@ jobs:
110110
- name: Conditionally set env
111111
if: matrix.browser_flags != '--node' # if browser testing
112112
run: echo "WASM_BINDGEN_USE_BROWSER=1" >> $GITHUB_ENV
113-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
113+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
114114
with:
115115
persist-credentials: false
116116
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
@@ -139,7 +139,7 @@ jobs:
139139
with:
140140
egress-policy: audit
141141

142-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
142+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
143143
with:
144144
persist-credentials: false
145145
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
@@ -168,7 +168,7 @@ jobs:
168168
with:
169169
egress-policy: audit
170170

171-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
171+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
172172
with:
173173
persist-credentials: false
174174
- uses: obi1kenobi/cargo-semver-checks-action@5b298c9520f7096a4683c0bd981a7ac5a7e249ae # v2.8
@@ -184,7 +184,7 @@ jobs:
184184
with:
185185
egress-policy: audit
186186

187-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
187+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
188188
with:
189189
persist-credentials: false
190190
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
@@ -210,7 +210,7 @@ jobs:
210210
with:
211211
egress-policy: audit
212212

213-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
213+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
214214
with:
215215
persist-credentials: false
216216
- run: rustup toolchain add nightly && rustup default nightly
@@ -235,7 +235,7 @@ jobs:
235235
with:
236236
egress-policy: audit
237237

238-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
238+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
239239
with:
240240
persist-credentials: false
241241
- run: rustup toolchain add nightly && rustup default nightly && rustup component add clippy
@@ -261,7 +261,7 @@ jobs:
261261
with:
262262
egress-policy: audit
263263

264-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
264+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
265265
with:
266266
persist-credentials: false
267267
- run: rustup toolchain add nightly && rustup default nightly && rustup component add clippy
@@ -319,7 +319,7 @@ jobs:
319319
with:
320320
egress-policy: audit
321321

322-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
322+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
323323
with:
324324
persist-credentials: false
325325
- run: rustup toolchain add nightly && rustup default nightly && rustup component add clippy
@@ -369,7 +369,7 @@ jobs:
369369
with:
370370
egress-policy: audit
371371

372-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
372+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
373373
with:
374374
persist-credentials: false
375375
- run: rustup toolchain add nightly && rustup default nightly && rustup component add clippy
@@ -427,7 +427,7 @@ jobs:
427427
with:
428428
egress-policy: audit
429429

430-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
430+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
431431
with:
432432
persist-credentials: false
433433
- run: rustup toolchain add nightly && rustup default nightly && rustup component add clippy

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
egress-policy: audit
6767

6868
- name: Checkout repository
69-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
69+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7070
with:
7171
persist-credentials: false
7272

.github/workflows/devskim.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
egress-policy: audit
3939

4040
- name: Checkout code
41-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
41+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4242
with:
4343
persist-credentials: false
4444

.github/workflows/release-plz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
egress-policy: audit
2424

2525
- name: Checkout repository
26-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
26+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2727
with:
2828
fetch-depth: 0
2929
token: ${{ secrets.RELEASE_PLZ_PAT }}
@@ -58,7 +58,7 @@ jobs:
5858
egress-policy: audit
5959

6060
- name: Checkout repository
61-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
61+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
6262
with:
6363
fetch-depth: 0
6464
token: ${{ secrets.RELEASE_PLZ_PAT }}

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
egress-policy: audit
4545

4646
- name: "Checkout code"
47-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
47+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4848
with:
4949
persist-credentials: false
5050

0 commit comments

Comments
 (0)