install-node: Upgrade Node.js from 22.11.0 to 22.12.0.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2025-01-02 15:19:45 -08:00
committed by Tim Abbott
parent 6ada80513f
commit 30b68abf55
2 changed files with 4 additions and 4 deletions

View File

@@ -1,18 +1,18 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -euo pipefail set -euo pipefail
version=22.11.0 version=22.12.0
arch="$(uname -m)" arch="$(uname -m)"
case $arch in case $arch in
x86_64) x86_64)
tarball="node-v$version-linux-x64.tar.xz" tarball="node-v$version-linux-x64.tar.xz"
sha256=83bf07dd343002a26211cf1fcd46a9d9534219aad42ee02847816940bf610a72 sha256=22982235e1b71fa8850f82edd09cdae7e3f32df1764a9ec298c72d25ef2c164f
;; ;;
aarch64) aarch64)
tarball="node-v$version-linux-arm64.tar.xz" tarball="node-v$version-linux-arm64.tar.xz"
sha256=6031d04b98f59ff0f7cb98566f65b115ecd893d3b7870821171708cdbaf7ae6e sha256=8cfd5a8b9afae5a2e0bd86b0148ca31d2589c0ea669c2d0b11c132e35d90ed68
;; ;;
esac esac

View File

@@ -49,4 +49,4 @@ API_FEATURE_LEVEL = 332 # Last bumped for data deletion of deactivated realms.
# historical commits sharing the same major version, in which case a # historical commits sharing the same major version, in which case a
# minor version bump suffices. # minor version bump suffices.
PROVISION_VERSION = (306, 0) # bumped 2024-12-20 to upgrade Python requirements PROVISION_VERSION = (306, 1) # bumped 2025-02-01 to upgrade Node.js