Skip to content

Commit a7dd779

Browse files
committed
Update minimum version to node 20
1 parent 1dab2d1 commit a7dd779

File tree

27 files changed

+46
-46
lines changed

27 files changed

+46
-46
lines changed

.github/workflows/integration-full.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
uses: ./.github/workflows/shared-integration.yml
3535
with:
3636
os: "ubuntu-latest"
37-
node_version: "[18, 20]"
37+
node_version: "[20, 22]"
3838
browser: '["chromium", "firefox"]'
3939

4040
integration-windows:
@@ -43,7 +43,7 @@ jobs:
4343
uses: ./.github/workflows/shared-integration.yml
4444
with:
4545
os: "windows-latest"
46-
node_version: "[18, 20]"
46+
node_version: "[20, 22]"
4747
browser: '["msedge"]'
4848

4949
integration-macos:
@@ -52,5 +52,5 @@ jobs:
5252
uses: ./.github/workflows/shared-integration.yml
5353
with:
5454
os: "macos-latest"
55-
node_version: "[18, 20]"
55+
node_version: "[20, 22]"
5656
browser: '["webkit"]'

.github/workflows/integration-pr-ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ jobs:
3131
uses: ./.github/workflows/shared-integration.yml
3232
with:
3333
os: "ubuntu-latest"
34-
node_version: "[20]"
34+
node_version: "[22]"
3535
browser: '["chromium"]'

.github/workflows/integration-pr-windows-macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: ./.github/workflows/shared-integration.yml
2222
with:
2323
os: "ubuntu-latest"
24-
node_version: "[20]"
24+
node_version: "[22]"
2525
browser: '["firefox"]'
2626

2727
integration-msedge:
@@ -30,7 +30,7 @@ jobs:
3030
uses: ./.github/workflows/shared-integration.yml
3131
with:
3232
os: "windows-latest"
33-
node_version: "[20]"
33+
node_version: "[22]"
3434
browser: '["msedge"]'
3535

3636
integration-webkit:
@@ -39,5 +39,5 @@ jobs:
3939
uses: ./.github/workflows/shared-integration.yml
4040
with:
4141
os: "macos-latest"
42-
node_version: "[20]"
42+
node_version: "[22]"
4343
browser: '["webkit"]'

.github/workflows/shared-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
node_version:
1010
required: true
1111
# this is limited to string | boolean | number (https://github.community/t/can-action-inputs-be-arrays/16457)
12-
# but we want to pass an array (node_version: "[18, 20]"),
12+
# but we want to pass an array (node_version: "[20, 22]"),
1313
# so we'll need to manually stringify it for now
1414
type: string
1515
browser:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
fail-fast: false
2727
matrix:
2828
node:
29-
- 18
3029
- 20
30+
- 22
3131

3232
runs-on: ubuntu-latest
3333

integration/helpers/node-template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@
3434
"typescript": "^5.1.0"
3535
},
3636
"engines": {
37-
"node": ">=18.0.0"
37+
"node": ">=20.0.0"
3838
}
3939
}

integration/helpers/vite-cloudflare-template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@
3030
"wrangler": "^3.28.2"
3131
},
3232
"engines": {
33-
"node": ">=18.0.0"
33+
"node": ">=20.0.0"
3434
}
3535
}

integration/helpers/vite-template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@
3636
"vite-tsconfig-paths": "^4.2.1"
3737
},
3838
"engines": {
39-
"node": ">=18.0.0"
39+
"node": ">=20.0.0"
4040
}
4141
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
"vite-tsconfig-paths": "^4.2.2"
123123
},
124124
"engines": {
125-
"node": ">=18.0.0"
125+
"node": ">=20.0.0"
126126
},
127127
"pnpm": {
128128
"patchedDependencies": {

packages/react-router-architect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
}
4949
},
5050
"engines": {
51-
"node": ">=18.0.0"
51+
"node": ">=20.0.0"
5252
},
5353
"files": [
5454
"dist/",

0 commit comments

Comments
 (0)