Skip to content

Commit 3591521

Browse files
committed
chore: update development dependencies and configuration files
Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
1 parent 00c1028 commit 3591521

7 files changed

Lines changed: 5874 additions & 8763 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
contents: read
1515
steps:
1616
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17+
with:
18+
persist-credentials: 'false'
1719
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
1820
with:
1921
node-version-file: package.json
@@ -33,6 +35,8 @@ jobs:
3335
RUNNER_DEBUG: 1
3436
steps:
3537
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
38+
with:
39+
persist-credentials: 'false'
3640
- uses: ./
3741
with:
3842
version: 'latest'
@@ -59,6 +63,7 @@ jobs:
5963
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
6064
with:
6165
fetch-depth: 0
66+
persist-credentials: 'false'
6267

6368
- name: Lint Code Base
6469
uses: super-linter/super-linter/slim@61abc07d755095a68f4987d1c2c3d1d64408f1f9 # v8.5.0
@@ -101,6 +106,7 @@ jobs:
101106
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
102107
with:
103108
fetch-depth: 0
109+
persist-credentials: 'false'
104110
- name: Setup Node.js
105111
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
106112
with:

.github/workflows/pr.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ jobs:
4949
runs-on: ubuntu-latest
5050
steps:
5151
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
52+
with:
53+
persist-credentials: 'false'
5254
- name: check
5355
run: |
5456
PR_TITLE_PREFIX=$(echo "$PR_TITLE" | cut -d':' -f1)

.github/workflows/renovate-custom-hooks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ jobs:
108108
109109
# Call GitHub API
110110
curl https://api.github.com/graphql -f \
111-
-sSf -H "Authorization: Bearer $GITHUB_TOKEN" \
112-
--data "@$JSON_PAYLOAD_FILE"
111+
-sSf -H "Authorization: Bearer $GITHUB_TOKEN" \
112+
--data "@$JSON_PAYLOAD_FILE"
113113
114114
# Clean up temporary files
115115
rm "$FILE_CHANGES_JSON_FILE" "$JSON_PAYLOAD_FILE"

.github/workflows/update-major-tag.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
16+
with:
17+
persist-credentials: 'false'
1618
- run: |
1719
TAG="${{ github.ref_name }}"
1820
if [[ "$TAG" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then

0 commit comments

Comments
 (0)