Skip to content

Commit 0280e3e

Browse files
authored
Update GitHub Actions (#301)
1 parent 2b65dbe commit 0280e3e

File tree

5 files changed

+23
-11
lines changed

5 files changed

+23
-11
lines changed

.cspell.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,15 @@
1414
"Segoe",
1515
"twbs",
1616
"vbtn",
17-
"vstack"
17+
"vstack",
18+
"ZIZMOR"
1819
],
1920
"language": "en,en-US",
2021
"allowCompoundWords": true,
21-
"ignorePaths": [".cspell.json", "**/node_modules/**", "*.min.*"],
22+
"ignorePaths": [
23+
".cspell.json",
24+
"**/node_modules/**",
25+
"*.min.*"
26+
],
2227
"useGitignore": true
2328
}

.github/workflows/codeql.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,17 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
28+
with:
29+
persist-credentials: false
2830

2931
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@v3
32+
uses: github/codeql-action/init@2d92b76c45b91eb80fc44c74ce3fce0ee94e8f9d # v3.30.0
3133
with:
3234
languages: ${{ matrix.language }}
3335
queries: +security-and-quality
3436

3537
- name: Perform CodeQL Analysis
36-
uses: github/codeql-action/analyze@v3
38+
uses: github/codeql-action/analyze@2d92b76c45b91eb80fc44c74ce3fce0ee94e8f9d # v3.30.0
3739
with:
3840
category: "/language:${{ matrix.language }}"

.github/workflows/spellcheck.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,11 @@ jobs:
1616
runs-on: ubuntu-latest
1717
if: ${{ github.actor != 'dependabot[bot]' }}
1818
steps:
19-
- uses: actions/checkout@v5
20-
- uses: streetsidesoftware/cspell-action@v7
19+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
20+
with:
21+
persist-credentials: false
22+
23+
- uses: streetsidesoftware/cspell-action@dcd03dc3e8a59ec2e360d0c62db517baa0b4bb6d # v7.2.0
2124
with:
2225
check_dot_files: false
2326
incremental_files_only: true

.github/workflows/super-linter.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@ jobs:
2121

2222
steps:
2323
- name: Checkout Code
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2525
with:
2626
fetch-depth: 0
27+
persist-credentials: false
2728

2829
- name: Lint Code Base
29-
uses: super-linter/super-linter/slim@v8
30+
uses: super-linter/super-linter/slim@v8.1.0
3031
env:
3132
DEFAULT_BRANCH: main
3233
FILTER_REGEX_EXCLUDE: .*css/.*
@@ -36,5 +37,6 @@ jobs:
3637
VALIDATE_ALL_CODEBASE: false
3738
VALIDATE_CHECKOV: false
3839
VALIDATE_CSS: false
40+
VALIDATE_GITHUB_ACTIONS_ZIZMOR: false
3941
VALIDATE_JSON_PRETTIER: false
4042
VALIDATE_MARKDOWN: false

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828

2929
steps:
3030
- name: Clone repository
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3232
with:
3333
persist-credentials: false
3434

3535
- name: Set up Node.js
36-
uses: actions/setup-node@v4
36+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
3737
with:
3838
cache: npm
3939

0 commit comments

Comments
 (0)