chore: upgrade Node.js runtime to v24 across codebase #419

Merged
jason.woltje merged 438 commits from fix/auth-frontend-remediation into main 2026-02-17 01:04:47 +00:00
Showing only changes of commit aad6cb75d0 - Show all commits

View File

@@ -282,12 +282,12 @@ steps:
STATUS=$(curl -s -o /dev/null -w "%{http_code}" -X POST \
-H "Authorization: token $GITEA_TOKEN" \
"https://git.mosaicstack.dev/api/v1/packages/mosaic/container/${package}/-/link/stack")
if [ "$STATUS" = "204" ]; then
echo "Linked ${package} to stack"
if [ "$STATUS" = "201" ] || [ "$STATUS" = "204" ]; then
echo "Linked ${package} to stack"
elif [ "$STATUS" = "400" ]; then
echo "${package} already linked (OK)"
echo "${package} already linked (OK)"
else
echo "Warning: ${package} link returned $STATUS"
echo "Warning: ${package} link returned $STATUS"
fi
done
when: