Skip to content

Commit 920f969

Browse files
committed
A
1 parent 1d3b280 commit 920f969

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/workflows/clippy_dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v4
2020
with:
2121
# Unsetting this would make so that any malicious package could get our Github Token
22-
persist-credentials: false
22+
2323

2424
# Run
2525
- name: Build

.github/workflows/clippy_mq.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
ref: ${{ github.ref }}
2626
# Unsetting this would make so that any malicious package could get our Github Token
27-
persist-credentials: false
27+
2828

2929
# Run
3030
- name: Check Changelog
@@ -66,7 +66,7 @@ jobs:
6666
- name: Checkout
6767
uses: actions/checkout@v4
6868
with:
69-
persist-credentials: false
69+
7070

7171
- name: Install i686 dependencies
7272
if: matrix.host == 'i686-unknown-linux-gnu'
@@ -126,7 +126,7 @@ jobs:
126126
- name: Checkout
127127
uses: actions/checkout@v4
128128
with:
129-
persist-credentials: false
129+
130130

131131
- name: Install toolchain
132132
run: rustup show active-toolchain
@@ -143,7 +143,7 @@ jobs:
143143
- name: Checkout
144144
uses: actions/checkout@v4
145145
with:
146-
persist-credentials: false
146+
147147

148148
- name: Install toolchain
149149
run: rustup show active-toolchain
@@ -197,7 +197,7 @@ jobs:
197197
- name: Checkout
198198
uses: actions/checkout@v4
199199
with:
200-
persist-credentials: false
200+
201201

202202
- name: Install toolchain
203203
run: rustup show active-toolchain

.github/workflows/clippy_pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/checkout@v4
2828
with:
2929
# Unsetting this would make so that any malicious package could get our Github Token
30-
persist-credentials: false
30+
persist-credentials: true
3131

3232
- name: Install toolchain
3333
run: rustup show active-toolchain

.github/workflows/deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424
uses: actions/checkout@v4
2525
with:
2626
# Unsetting this would make so that any malicious package could get our Github Token
27-
persist-credentials: false
27+
2828

2929
- name: Checkout
3030
uses: actions/checkout@v4
3131
with:
3232
ref: ${{ env.TARGET_BRANCH }}
3333
path: 'out'
3434
# Unsetting this would make so that any malicious package could get our Github Token
35-
persist-credentials: false
35+
3636

3737
# Run
3838
- name: Set tag name

.github/workflows/lintcheck.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
fetch-depth: 2
2424
# Unsetting this would make so that any malicious package could get our Github Token
25-
persist-credentials: false
25+
2626

2727
# HEAD is the generated merge commit `refs/pull/N/merge` between the PR and `master`, `HEAD^`
2828
# being the commit from `master` that is the base of the merge
@@ -77,7 +77,7 @@ jobs:
7777
uses: actions/checkout@v4
7878
with:
7979
# Unsetting this would make so that any malicious package could get our Github Token
80-
persist-credentials: false
80+
8181

8282
- name: Cache lintcheck bin
8383
id: cache-lintcheck-bin
@@ -110,7 +110,7 @@ jobs:
110110
uses: actions/checkout@v4
111111
with:
112112
# Unsetting this would make so that any malicious package could get our Github Token
113-
persist-credentials: false
113+
114114

115115
- name: Restore lintcheck bin
116116
uses: actions/cache/restore@v4

.github/workflows/remark.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v4
1515
with:
1616
# Unsetting this would make so that any malicious package could get our Github Token
17-
persist-credentials: false
17+
1818

1919
- name: Setup Node.js
2020
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)