AlinsRan opened a new pull request, #2772: URL: https://github.com/apache/apisix-ingress-controller/pull/2772
## Problem The `push on dockerhub` workflow has been failing with `startup_failure` since April 2026 (run #168). No jobs are ever created, meaning the workflow can't even start. **Root cause:** `actions/setup-go@v4` uses Node.js 16, which GitHub Actions has deprecated. This causes the workflow to fail at startup before any jobs run. ## Evidence - Run #167 (2026-03-12): ✅ success - Run #168 (2026-04-13): ❌ startup_failure ← first failure - All runs since then: ❌ startup_failure The workflow file itself was not changed between #167 and #168. The failure is entirely due to GitHub deprecating the Node.js 16 runner used by `setup-go@v4`. ``` $ gh api repos/actions/setup-go/contents/action.yml?ref=v4 | ... | grep using using: 'node16' # deprecated ``` ## Fix Upgrade `actions/setup-go@v4` → `@v5` (uses Node.js 20). Fixes: https://github.com/apache/apisix-ingress-controller/actions/runs/26492256243 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
