Skip to content

Commit e5fd93b

Browse files
authored
GitHub Action Update (#1711)
* GitHub Action Update * Updates
1 parent 15ef3df commit e5fd93b

File tree

7 files changed

+24
-3
lines changed

7 files changed

+24
-3
lines changed

.cspell.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
"langtag",
4848
"lded",
4949
"llms",
50+
"micnncim",
5051
"mingo",
5152
"msapplication",
5253
"nextid",
@@ -86,10 +87,15 @@
8687
"webp",
8788
"withastro",
8889
"xiang",
89-
"Yanis"
90+
"Yanis",
91+
"ZIZMOR"
9092
],
9193
"allowCompoundWords": true,
9294
"language": "en,en-US",
93-
"ignorePaths": ["*.mjs", ".cspell.json", "data-store.json"],
95+
"ignorePaths": [
96+
"*.mjs",
97+
".cspell.json",
98+
"data-store.json"
99+
],
94100
"useGitignore": true
95101
}

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
steps:
2424
- name: Checkout repository
2525
uses: actions/checkout@v5
26+
with:
27+
persist-credentials: false
2628

2729
- name: Initialize CodeQL
2830
uses: github/codeql-action/init@v3

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
steps:
1313
- name: ⬇️ Checkout
1414
uses: actions/checkout@v5
15+
with:
16+
persist-credentials: false
1517

1618
- name: ⎔ Setup node
1719
uses: actions/setup-node@v4

.github/workflows/spellcheck.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
if: ${{ github.actor != 'dependabot[bot]' }}
1515
steps:
1616
- uses: actions/checkout@v5
17+
with:
18+
persist-credentials: false
19+
1720
- uses: streetsidesoftware/cspell-action@v7
1821
with:
1922
check_dot_files: false

.github/workflows/super-linter.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ jobs:
2727
uses: actions/checkout@v5
2828
with:
2929
fetch-depth: 0
30+
persist-credentials: false
3031

3132
- name: Super-linter
32-
uses: super-linter/super-linter/slim@v8
33+
uses: super-linter/super-linter/slim@v8.1.0
3334
env:
3435
DEFAULT_BRANCH: main
3536
FILTER_REGEX_EXCLUDE: '/test/'
@@ -45,6 +46,7 @@ jobs:
4546
VALIDATE_CSS_PRETTIER: false
4647
VALIDATE_EDITORCONFIG: false
4748
VALIDATE_GIT_COMMITLINT: false
49+
VALIDATE_GITHUB_ACTIONS_ZIZMOR: false
4850
VALIDATE_HTML: false
4951
VALIDATE_HTML_PRETTIER: false
5052
VALIDATE_JAVASCRIPT_ES: false

.github/workflows/sync-labels.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v5
17+
with:
18+
persist-credentials: false
1719

1820
- uses: micnncim/action-label-syncer@v1
1921
with:

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
steps:
1616
- name: ⬇️ Checkout
1717
uses: actions/checkout@v5
18+
with:
19+
persist-credentials: false
1820

1921
- name: ⎔ Setup node
2022
uses: actions/setup-node@v4
@@ -47,6 +49,8 @@ jobs:
4749

4850
- name: ⬇️ Checkout
4951
uses: actions/checkout@v5
52+
with:
53+
persist-credentials: false
5054

5155
- name: ⎔ Setup node ${{ matrix.node }}
5256
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)