Skip to content

Commit b16a9cf

Browse files
authored
Upgrade Node to 24.11.1 (#6232)
1 parent d61ea79 commit b16a9cf

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.18.0
1+
24.11.1

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM mcr.microsoft.com/playwright:noble
22

33
RUN mkdir -p /usr/local/nvm
44
ENV NVM_DIR=/usr/local/nvm
5-
ENV NODE_VERSION=22.18.0
5+
ENV NODE_VERSION=24.11.1
66
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash && \
77
. "$NVM_DIR/nvm.sh" && \
88
nvm install v${NODE_VERSION} && \

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"license": "NASA-1.3",
2424
"repository": "nasa-gibs/worldview",
2525
"engines": {
26-
"node": ">= 22.18.0"
26+
"node": ">= 24.11.1"
2727
},
2828
"scripts": {
2929
"analyze": "cross-env ANALYZE_MODE=true NODE_ENV=production webpack",

tasks/bamboo/linkReport.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
set -e -x
77

88
# Install node.js
9-
NODE_VERSION=v22.18.0
9+
NODE_VERSION=v24.11.1
1010
curl -O https://nodejs.org/dist/${NODE_VERSION}/node-${NODE_VERSION}-linux-x64.tar.gz
1111
tar xf node-${NODE_VERSION}-linux-x64.tar.gz &&
1212
export PATH=$(pwd)/node-${NODE_VERSION}-linux-x64/bin:${PATH}

0 commit comments

Comments
 (0)