Skip to content

Upgrade Node version to 24 #3074

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
jobs:
build:
docker:
- image: 'cimg/node:20.11'
- image: 'cimg/node:24.2.0'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are other uses of cimg/node in this file - should they be updated too?

resource_class: large
steps:
- checkout
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
- .
build_without_angular:
docker:
- image: 'cimg/node:20.11'
- image: 'cimg/node:24.2.0'
steps:
- checkout
- run:
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
path: .tmp/junit
deploy:
docker:
- image: 'cimg/node:18.12'
- image: 'cimg/node:24.2.0'
steps:
- setup_remote_docker
- attach_workspace:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.15.0
24.2.0
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.18-bullseye
FROM node:24.2.0
ENV node_env production
ENV NPM_CONFIG_PREFIX=/home/node/.npm-global
ENV PATH=$PATH:/home/node/.npm-global/bin
Expand Down
Loading