Problem
The Release workflow fails on all platforms with:
Unable to resolve action `docker/setup-qemu-action@29109295f81e9208d7d86ff9f9a89f41e8f8e6f3`
GitHub Actions resolves all action refs at startup — even for steps with if: conditions — so the broken SHA causes every matrix job to fail immediately.
Root cause
The docker/setup-qemu-action v3 tag was force-pushed upstream; SHA 29109295 no longer exists.
Fix
Update pin to c7c53464 (v3.7.0) — current stable SHA.
Acceptance criteria
- Release workflow completes successfully on next tag push
Problem
The Release workflow fails on all platforms with:
GitHub Actions resolves all action refs at startup — even for steps with
if:conditions — so the broken SHA causes every matrix job to fail immediately.Root cause
The
docker/setup-qemu-actionv3tag was force-pushed upstream; SHA29109295no longer exists.Fix
Update pin to
c7c53464(v3.7.0) — current stable SHA.Acceptance criteria