use nodejs:20 module stream instead of default nodejs 16

The default npm/nodejs on Rocky 9 is v16 which is too old for the
Bitwarden CLI (WASM/getrandom crash).
This commit is contained in:
2026-03-13 12:43:59 -04:00
parent c8976e0a22
commit 4fea2e7510
+2 -1
View File
@@ -29,7 +29,8 @@ fi
# --- Install dependencies ---
echo "==> Installing dependencies..."
dnf install -y git-crypt npm
dnf install -y git-crypt
dnf module install -y nodejs:20/common
if ! command -v bw &>/dev/null; then
echo "==> Installing Bitwarden CLI..."