Skip to content

Commit 2e3da4d

Browse files
build(deps): update dependency node to v24 (main) (#38939)
| datasource | package | from | to | | --------------- | --------------------------- | -------- | -------- | | github-releases | containerbase/node-prebuild | 22.21.1 | 24.11.0 | | node-version | node | v22.21.1 | v24.11.0 | This also follows [0] for bumping in all the relevant places. [0]: https://github.com/renovatebot/renovate/blob/HEAD/docs/development/bump-node-major.md BREAKING CHANGE: Needs NodeJS v24.11.0 instead of v24.10.0. NodeJS v22 is still supported. Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent d7a741b commit 2e3da4d

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ concurrency:
3333
env:
3434
# are we on a release branch?
3535
DO_REALEASE: ${{ github.ref_name == github.event.repository.default_branch || github.ref_name == 'next' || startsWith(github.ref_name, 'maint/')}}
36-
NODE_VERSION: 22
36+
NODE_VERSION: 24
3737
PDM_VERSION: 2.26.1 # renovate: datasource=pypi depName=pdm
3838
DRY_RUN: true
3939
TEST_LEGACY_DECRYPTION: true

.github/workflows/update-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
workflow_dispatch:
66

77
env:
8-
NODE_VERSION: 22
8+
NODE_VERSION: 24
99

1010
permissions: {}
1111

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.21.1
1+
24.11.0

docs/development/local-development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ For example, if you think anything is unclear, or you think something needs to b
1111
You need the following dependencies for local development:
1212

1313
- Git `>=2.45.1`
14-
- Node.js `^22.13.0`
14+
- Node.js `^24.11.0`
1515
- pnpm `^10.0.0`
1616
- C++ compiler
1717

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,11 @@
139139
},
140140
"homepage": "https://renovatebot.com",
141141
"engines": {
142-
"node": "^22.13.0 || ^24.10.0",
142+
"node": "^22.13.0 || ^24.11.0",
143143
"pnpm": "^10.0.0"
144144
},
145145
"volta": {
146-
"node": "22.21.1",
146+
"node": "24.11.0",
147147
"pnpm": "10.20.0"
148148
},
149149
"dependencies": {

tools/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ FROM --platform=$BUILDPLATFORM ghcr.io/renovatebot/base-image:10.72.2@sha256:14a
2121

2222
# We want a specific node version here
2323
# renovate: datasource=github-releases packageName=containerbase/node-prebuild versioning=node
24-
RUN install-tool node 22.21.1
24+
RUN install-tool node 24.11.0
2525

2626
# corepack is too buggy 😞
2727
# renovate: datasource=npm

0 commit comments

Comments
 (0)