Skip to content

Commit 0e103d6

Browse files
authored
Pin workflow hashes (#357)
1 parent a72b0a9 commit 0e103d6

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v6
17+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
18+
with:
19+
persist-credentials: false
1820
- name: Setup Node.js (or other environment if needed)
19-
uses: actions/setup-node@v6
21+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2022
with:
2123
node-version: 24
2224
- name: Install dependencies and build site

.github/workflows/pre-commit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout Code
14-
uses: actions/checkout@v6
14+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1515
with:
16-
# Fetch all history so pre-commit can compare if needed
1716
fetch-depth: 0
17+
persist-credentials: false
1818
- name: Set up Python
1919
uses: actions/setup-python@v6
2020
with:
2121
python-version: "3.x"
22-
architecture: "x64" # optional x64 or x86. Defaults to x64 if not specified
22+
architecture: "x64"
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip

.github/workflows/super-linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
contents: read
1414
steps:
1515
- name: Checkout Code
16-
uses: actions/checkout@v6
16+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1717
with:
1818
# super-linter needs the full git history to get the
1919
# list of files that changed across commits
2020
fetch-depth: 0
2121
persist-credentials: false
2222
- name: Super-Linter
23-
uses: super-linter/super-linter@v8.5.0
23+
uses: super-linter/super-linter@61abc07d755095a68f4987d1c2c3d1d64408f1f9 # v8.5.0
2424
env:
2525
ERROR_ON_MISSING_EXEC_BIT: true
2626
VALIDATE_EDITORCONFIG: true

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ default_stages: [pre-commit, pre-push]
22
minimum_prek_version: "0.2.22"
33
default_language_version:
44
python: python3
5-
node: 24.13.0
5+
node: 24.14.0
66
exclude: |
77
(?x)^(
88
\.git/|

0 commit comments

Comments
 (0)