Skip to content

Commit b7f5a9e

Browse files
committed
upgrade GHA reusable actions to node24-compatible versions, as the node20 EOL is soon
1 parent 3008262 commit b7f5a9e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
1818
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2121
with:
2222
token: ${{ secrets.GH_TOKEN }}
2323
- name: Install Node.js
24-
uses: actions/setup-node@v3
24+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2525
with:
2626
node-version: 18
2727
- name: Install packages

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
env:
1010
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1313

1414
- name: Use Node.js ${{ matrix.node-version }}
15-
uses: actions/setup-node@v3
15+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
1616
with:
1717
node-version: ${{ matrix.node-version }}
1818
- run: npm install

0 commit comments

Comments
 (0)