Skip to content

Commit d75f0ed

Browse files
committed
Use latest NodeJS on CI
The CI builds started failing on node `v22.5.0` likely due to nodejs/node#53902 The NodeJS version on CI was therefore pinned to 21 in #272 This pull request goes back to using the latest NodeJS version, and should be merged to master once the issue with NodeJS `v22.5.0` noted above is fixed, and the build on this pull request succeeds.
1 parent 5abda9e commit d75f0ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v4
2323
- uses: actions/setup-node@v4
2424
with:
25-
node-version: '21'
25+
node-version: 'latest'
2626
cache: 'yarn'
2727

2828
- name: Install dependencies
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/checkout@v4
4040
- uses: actions/setup-node@v4
4141
with:
42-
node-version: '21'
42+
node-version: 'latest'
4343
cache: 'yarn'
4444

4545
- name: Install dependencies

0 commit comments

Comments
 (0)