Skip to content

Commit 0a435bd

Browse files
committed
chore(node): use latest node v20
required to use latest vite only impacts local dev and CI, not downstream users
1 parent daebcd1 commit 0a435bd

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/benchmark-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Node
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: '20.18.1'
21+
node-version: '20.19.4'
2222
cache: 'yarn'
2323

2424
- name: Install dependencies

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Node
2525
uses: actions/setup-node@v4
2626
with:
27-
node-version: '20.18.1'
27+
node-version: '20.19.4'
2828
cache: 'yarn'
2929

3030
- name: Install dependencies

.github/workflows/karma.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ env:
2222
PUPPETEER_SKIP_DOWNLOAD: 'true' # only needed for @best/runner-local, unused here
2323
GITHUB_RUN_ID: ${{github.run_id}}
2424
COVERAGE: '1'
25-
NODE_VERSION: '20.18.1'
25+
NODE_VERSION: '20.19.4'
2626

2727
jobs:
2828
run-karma-tests-group-1:

.github/workflows/unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup Node
3030
uses: actions/setup-node@v4
3131
with:
32-
node-version: '20.18.1'
32+
node-version: '20.19.4'
3333
cache: 'yarn'
3434

3535
# Needed for perf smoke tests, matches the chromedriver version installed by tachometer (https://github.com/google/tachometer/blob/main/README.md#on-demand-dependencies)

.github/workflows/web-test-runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
SAUCE_ACCESS_KEY: ${{secrets.SAUCE_ACCESS_KEY}}
1414
GITHUB_RUN_ID: ${{github.run_id}}
1515
COVERAGE: '1'
16-
NODE_VERSION: '20.18.1'
16+
NODE_VERSION: '20.19.4'
1717

1818
jobs:
1919
# Starting with the basics, just get tests running in CI

.github/workflows/webdriver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Setup Node
3434
uses: actions/setup-node@v4
3535
with:
36-
node-version: '20.18.1'
36+
node-version: '20.19.4'
3737
cache: 'yarn'
3838

3939
# Needed for local browser integration tests

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"node": ">=10"
9393
},
9494
"volta": {
95-
"node": "20.18.1",
95+
"node": "20.19.4",
9696
"yarn": "1.22.22"
9797
},
9898
"resolutions": {

0 commit comments

Comments
 (0)