Skip to content

Commit 3c0d09d

Browse files
committed
fix(actions): zizmor fixes
Signed-off-by: Adam Setch <adam.setch@outlook.com>
1 parent c53ee8f commit 3c0d09d

File tree

6 files changed

+16
-1
lines changed

6 files changed

+16
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
steps:
3333
- name: Checkout
3434
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
35+
with:
36+
persist-credentials: false
3537

3638
- name: Setup Node.js
3739
uses: ./.github/actions/setup-node

.github/workflows/lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17+
with:
18+
persist-credentials: false
1719

1820
- name: Setup Node.js
1921
uses: ./.github/actions/setup-node

.github/workflows/milestone.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,6 @@ jobs:
3131
run: |
3232
gh pr edit ${{ github.event.pull_request.number }} \
3333
--repo ${{ github.repository }} \
34-
--milestone "${{ steps.milestone.outputs.milestone }}"
34+
--milestone "${STEPS_MILESTONE_OUTPUTS_MILESTONE}"
35+
env:
36+
STEPS_MILESTONE_OUTPUTS_MILESTONE: ${{ steps.milestone.outputs.milestone }}

.github/workflows/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98
17+
with:
18+
persist-credentials: false
1719

1820
- name: Parse release branch
1921
if: startsWith(github.ref, 'refs/heads/release/')
@@ -61,6 +63,8 @@ jobs:
6163
steps:
6264
- name: Checkout
6365
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
66+
with:
67+
persist-credentials: false
6468

6569
- name: Setup Node.js
6670
uses: ./.github/actions/setup-node

.github/workflows/renovate.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
23+
with:
24+
persist-credentials: false
2325

2426
- uses: ./.github/actions/setup-node
2527
with:

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17+
with:
18+
persist-credentials: false
1719

1820
- name: Setup Node.js
1921
uses: ./.github/actions/setup-node
@@ -42,6 +44,7 @@ jobs:
4244
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4345
with:
4446
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
47+
persist-credentials: false
4548

4649
- name: Setup Node.js
4750
uses: ./.github/actions/setup-node

0 commit comments

Comments
 (0)