Skip to content

Commit 326b4bc

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 083d642 commit 326b4bc

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
@@ -8,13 +8,13 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
11+
- uses: actions/checkout@v4
1212
with:
1313
persist-credentials: false
1414
- name: Install Node.js
15-
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
15+
uses: actions/setup-node@v4
1616
with:
17-
node-version: 20
17+
node-version: 22
1818
cache: npm
1919
- run: npm ci
2020
- run: npm run test:lint

0 commit comments

Comments
 (0)