Skip to content

Commit 2368370

Browse files
committed
Update GitHub Actions workflows
- update actions/setup-node to fix extra 10 minute delay in CI - update Node.js - use version ranges instead of commit hashes to get future updates automatically (we already trust the GitHub Actions team)
1 parent ccc8890 commit 2368370

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/node.js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
12+
- uses: actions/checkout@v4
1313
with:
1414
persist-credentials: false
1515
- name: Install Node.js
16-
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
16+
uses: actions/setup-node@v4
1717
with:
18-
node-version: 20.x
18+
node-version: 22
1919
- run: npm ci
2020
- run: npm run build
2121
- run: npm test

0 commit comments

Comments
 (0)