install-node: Upgrade Node.js from 20.13.1 to 20.15.0.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2024-06-26 20:17:29 -07:00
parent 3dccb72519
commit 95f5d298de
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=20.13.1 version=20.15.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=efc0f295dd878e510ab12ea36bbadc3db03c687ab30c07e86c7cdba7eed879a9 sha256=4f57f7828e6adb9f6bc77932f10e316cca68b0f160c82b21d9a2c7647c7f10bf
;; ;;
aarch64) aarch64)
tarball="node-v$version-linux-arm64.tar.xz" tarball="node-v$version-linux-arm64.tar.xz"
sha256=d251cda3ee0a539d8aea4ea2327e98998cb23487569073902e35efb0526d574b sha256=ecdd2645630a35abd98ebcf2d989f38cec8cca6f198712d8ce72eaee77131307
;; ;;
esac esac

View File

@ -48,4 +48,4 @@ API_FEATURE_LEVEL = 266
# 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 = (284, 0) # bumped 2024-06-26 for upgrading JavaScript dependencies PROVISION_VERSION = (284, 1) # bumped 2024-06-26 for upgrading Node.js