chore(ci): update GHA actions to Node.js 24-compatible versions (#40477) (#41932)

This commit is contained in:
Luiz Otavio
2026-07-10 10:39:20 -03:00
committed by GitHub
parent 10d3a16e26
commit b50d423fd0
3 changed files with 10 additions and 6 deletions

View File

@@ -89,7 +89,11 @@ jobs:
# in the context of push (using multi-platform build), we need to pull the image locally
- name: Docker pull
if: github.event_name == 'push' && (steps.check.outputs.python || steps.check.outputs.frontend || steps.check.outputs.docker)
run: docker pull $IMAGE_TAG
run: |
for i in 1 2 3; do
docker pull $IMAGE_TAG && break
[ $i -lt 3 ] && sleep 30
done
- name: Print docker stats
if: steps.check.outputs.python || steps.check.outputs.frontend || steps.check.outputs.docker