We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bf5e40 commit f9df13bCopy full SHA for f9df13b
1 file changed
linux/ubuntu/scripts/act.sh
@@ -123,6 +123,9 @@ printf "\n\t🐋 Installed moby-buildx 🐋\t\n"
123
docker buildx version
124
IFS=' ' read -r -a NODE <<<"$NODE_VERSION"
125
for ver in "${NODE[@]}"; do
126
+ if [[ "${ver}" == "24" && "$(node_arch)" == "armv7l"]]; then
127
+ ver="22" # rip arm32/v7
128
+ fi
129
printf "\n\t🐋 Installing Node.JS=%s 🐋\t\n" "${ver}"
130
VER=$(curl https://nodejs.org/download/release/index.json | jq "[.[] | select(.version|test(\"^v${ver}\"))][0].version" -r)
131
NODEPATH="${ACT_TOOLSDIRECTORY}/node/${VER:1}/$(node_arch)"
0 commit comments