From 73ed60059fb5c5101bf0df4ac6b881b4eab9cb47 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Thu, 2 Oct 2025 08:31:19 +0200 Subject: [PATCH] Update node to 22.20.0 --- CHANGES | 2 +- scripts/create-release-tarball | 4 ++-- scripts/installer.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 7a0453a7f..bfb5a25c6 100644 --- a/CHANGES +++ b/CHANGES @@ -2930,7 +2930,7 @@ * notifications: email notification when server reboot is required * notifications: email notification when cloudron update failed * notifications: email notification for low disk space (90%) -* node: update to 22.17.0 +* node: update to 22.20.0 * docker: update to 28.1.1 * s3: automatically abort old multipart uploads * notifications: validate domains configs diff --git a/scripts/create-release-tarball b/scripts/create-release-tarball index 4622f536a..895f9f9e3 100755 --- a/scripts/create-release-tarball +++ b/scripts/create-release-tarball @@ -36,8 +36,8 @@ if ! $(cd "${SOURCE_DIR}" && git diff --exit-code >/dev/null); then exit 1 fi -if [[ "$(node --version)" != "v22.17.0" ]]; then - echo "This script requires node 22.17.0" +if [[ "$(node --version)" != "v22.20.0" ]]; then + echo "This script requires node 22.20.0" exit 1 fi diff --git a/scripts/installer.sh b/scripts/installer.sh index 8e8dd4878..89619165e 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -128,7 +128,7 @@ if ! which docker 2>/dev/null || [[ $(docker version --format {{.Client.Version} fi readonly old_node_version=20.18.0 -readonly node_version=22.17.0 +readonly node_version=22.20.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}