Skip to content

Commit afe3857

Browse files
committed
Bump minimum Node.js version to 18.18
Aligns us with ESLint v9.
1 parent 6795597 commit afe3857

File tree

12 files changed

+18
-18
lines changed

12 files changed

+18
-18
lines changed

.github/actions/next-integration-stat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"strip-ansi": "^7.0.1"
2222
},
2323
"engines": {
24-
"node": ">=18.17.0"
24+
"node": ">=18.18.0"
2525
},
2626
"packageManager": "[email protected]"
2727
}

.github/actions/next-stats-action/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt install unzip wget curl nano htop screen build-essential pkg-config libs
99

1010
RUN ln $(which python3) /usr/bin/python
1111

12-
RUN curl -sfLS https://install-node.vercel.app/v18.17.0 | bash -s -- -f
12+
RUN curl -sfLS https://install-node.vercel.app/v18.18.2 | bash -s -- -f
1313
RUN corepack enable
1414

1515
WORKDIR /next-stats

.github/actions/next-stats-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"typescript": "5.1.6"
1919
},
2020
"engines": {
21-
"node": ">=18.17.0"
21+
"node": ">=18.18.0"
2222
},
2323
"packageManager": "[email protected]"
2424
}

.github/actions/upload-turboyet-data/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@vercel/ncc": "^0.36.0"
1313
},
1414
"engines": {
15-
"node": ">=18.17.0"
15+
"node": ">=18.18.0"
1616
},
1717
"packageManager": "[email protected]"
1818
}

.github/workflows/build_and_test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ jobs:
197197
group: [1/5, 2/5, 3/5, 4/5, 5/5]
198198
uses: ./.github/workflows/build_reusable.yml
199199
with:
200-
nodeVersion: 18.17.0
200+
nodeVersion: 18.18.2
201201
afterBuild: RUST_BACKTRACE=0 NEXT_EXTERNAL_TESTS_FILTERS="$(pwd)/test/turbopack-dev-tests-manifest.json" TURBOPACK=1 TURBOPACK_DEV=1 node run-tests.js --timings -g ${{ matrix.group }} -c ${TEST_CONCURRENCY} --type integration
202202
stepName: 'test-turbopack-integration-${{ matrix.group }}'
203203
secrets: inherit
@@ -213,7 +213,7 @@ jobs:
213213
group: [1/5, 2/5, 3/5, 4/5, 5/5]
214214
uses: ./.github/workflows/build_reusable.yml
215215
with:
216-
nodeVersion: 18.17.0
216+
nodeVersion: 18.18.2
217217
afterBuild: RUST_BACKTRACE=0 NEXT_EXTERNAL_TESTS_FILTERS="$(pwd)/test/turbopack-build-tests-manifest.json" TURBOPACK=1 TURBOPACK_BUILD=1 NEXT_TEST_MODE=start node run-tests.js --timings -g ${{ matrix.group }} -c ${TEST_CONCURRENCY} --type production
218218
stepName: 'test-turbopack-production-${{ matrix.group }}'
219219
secrets: inherit
@@ -229,7 +229,7 @@ jobs:
229229
group: [1/5, 2/5, 3/5, 4/5, 5/5]
230230
uses: ./.github/workflows/build_reusable.yml
231231
with:
232-
nodeVersion: 18.17.0
232+
nodeVersion: 18.18.2
233233
afterBuild: RUST_BACKTRACE=0 NEXT_EXTERNAL_TESTS_FILTERS="$(pwd)/test/turbopack-build-tests-manifest.json" TURBOPACK=1 TURBOPACK_BUILD=1 node run-tests.js --timings -g ${{ matrix.group }} -c ${TEST_CONCURRENCY} --type integration
234234
stepName: 'test-turbopack-production-integration-${{ matrix.group }}'
235235
secrets: inherit
@@ -366,7 +366,7 @@ jobs:
366366
- 12/12
367367
uses: ./.github/workflows/build_reusable.yml
368368
with:
369-
nodeVersion: 18.17.0
369+
nodeVersion: 18.18.2
370370
afterBuild: node run-tests.js --timings -g ${{ matrix.group }} -c ${TEST_CONCURRENCY} --type integration
371371
stepName: 'test-integration-${{ matrix.group }}'
372372
secrets: inherit
@@ -391,7 +391,7 @@ jobs:
391391

392392
uses: ./.github/workflows/build_reusable.yml
393393
with:
394-
nodeVersion: 18.17.0
394+
nodeVersion: 18.18.2
395395
afterBuild: __NEXT_EXPERIMENTAL_PPR=true NEXT_EXTERNAL_TESTS_FILTERS="test/ppr-tests-manifest.json" node run-tests.js --timings -c ${TEST_CONCURRENCY} --type integration
396396
stepName: 'test-ppr-integration'
397397
secrets: inherit

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pr:
3434
variables:
3535
PNPM_CACHE_FOLDER: $(Pipeline.Workspace)/.pnpm-store
3636
NEXT_TELEMETRY_DISABLED: '1'
37-
node_version: ^18.17.0
37+
node_version: ^18.18.2
3838

3939
stages:
4040
- stage: Test

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@
262262
"scheduler": "0.25.0-rc-6230622a1a-20240610"
263263
},
264264
"engines": {
265-
"node": ">=18.17.0",
265+
"node": ">=18.18.0",
266266
"pnpm": "9.4.0"
267267
},
268268
"packageManager": "[email protected]",

packages/create-next-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@
5050
"validate-npm-package-name": "5.0.1"
5151
},
5252
"engines": {
53-
"node": ">=18.17.0"
53+
"node": ">=18.18.0"
5454
}
5555
}

packages/eslint-config-next/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"dependencies": {
1313
"@next/eslint-plugin-next": "15.0.0-canary.50",
1414
"@rushstack/eslint-patch": "^1.3.3",
15-
"@typescript-eslint/eslint-plugin": "^5.4.2 || ^6.0.0 || 7.0.0 - 7.2.0",
16-
"@typescript-eslint/parser": "^5.4.2 || ^6.0.0 || 7.0.0 - 7.2.0",
15+
"@typescript-eslint/eslint-plugin": "^5.4.2 || ^6.0.0 || ^7.0.0",
16+
"@typescript-eslint/parser": "^5.4.2 || ^6.0.0 || ^7.0.0",
1717
"eslint-import-resolver-node": "^0.3.6",
1818
"eslint-import-resolver-typescript": "^3.5.2",
1919
"eslint-plugin-import": "^2.28.1",

packages/next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,6 @@
341341
"vercel"
342342
],
343343
"engines": {
344-
"node": ">=18.17.0"
344+
"node": ">=18.18.0"
345345
}
346346
}

0 commit comments

Comments
 (0)