mirror of https://github.com/zulip/zulip.git
install-node: Upgrade Node.js from 20.15.1 to 20.17.0.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
00a54099a2
commit
2f8734aee0
|
@ -1,18 +1,18 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
version=20.15.1
|
version=20.17.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=26700f8d3e78112ad4a2618a9c8e2816e38a49ecf0213ece80e54c38cb02563f
|
sha256=a24db3dcd151a52e75965dba04cf1b3cd579ff30d6e0af9da1aede4d0f17486b
|
||||||
;;
|
;;
|
||||||
|
|
||||||
aarch64)
|
aarch64)
|
||||||
tarball="node-v$version-linux-arm64.tar.xz"
|
tarball="node-v$version-linux-arm64.tar.xz"
|
||||||
sha256=10d47a46ef208b3e4b226e4d595a82659123b22397ed77b7975d989114ec317e
|
sha256=7ebbb636c23f89dbf66648e227fbd0998ce33db4c588520256425102d97dd1a4
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
|
@ -50,4 +50,4 @@ API_FEATURE_LEVEL = 283 # Last bumped for can_manage_group
|
||||||
# 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 = (292, 0) # bumped 2024-08-25 to upgrade JavaScript dependencies
|
PROVISION_VERSION = (292, 1) # bumped 2024-08-25 to upgrade Node.js
|
||||||
|
|
Loading…
Reference in New Issue