Update nodejs to 24.13.0

This commit is contained in:
Girish Ramakrishnan
2026-01-23 08:59:25 +01:00
parent b6371a0bdf
commit 057fd18139
3 changed files with 5 additions and 4 deletions
+1
View File
@@ -3121,4 +3121,5 @@
[9.1.0]
* acme: ARI support . https://www.rfc-editor.org/rfc/rfc9773.txt
* Update nodejs to 24.13.0
+2 -2
View File
@@ -36,8 +36,8 @@ if ! $(cd "${SOURCE_DIR}" && git diff --exit-code >/dev/null); then
exit 1
fi
if [[ "$(node --version)" != "v22.20.0" ]]; then
echo "This script requires node 22.20.0"
if [[ "$(node --version)" != "v24.13.0" ]]; then
echo "This script requires node 24.13.0"
exit 1
fi
+2 -2
View File
@@ -127,8 +127,8 @@ if ! which docker 2>/dev/null || [[ $(docker version --format {{.Client.Version}
rm /tmp/containerd.deb /tmp/docker-ce-cli.deb /tmp/docker.deb
fi
readonly old_node_version=20.18.0
readonly node_version=22.20.0
readonly old_node_version=22.20.0
readonly node_version=24.13.0
if ! which node 2>/dev/null || [[ "$(node --version)" != "v${node_version}" ]]; then
log "installing/updating node ${node_version}"
mkdir -p /usr/local/node-${node_version}