This is an automated email from the ASF dual-hosted git repository. AlinsRan pushed a commit to branch fix/upgrade-actions-node16 in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
commit 53532e52c23238a113975d6539e210d0003f1c7b Author: rongxin <[email protected]> AuthorDate: Thu May 28 14:00:54 2026 +0800 ci: upgrade actions/setup-go from v4 to v5 to fix startup_failure actions/setup-go@v4 uses Node.js 16 which has been deprecated by GitHub Actions, causing all push-docker workflow runs to fail with startup_failure since April 2026. Upgrading to v5 which uses Node.js 20 fixes the issue. Co-authored-by: Copilot <[email protected]> --- .github/workflows/push-docker.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push-docker.yaml b/.github/workflows/push-docker.yaml index 2ac894f0..041b680f 100644 --- a/.github/workflows/push-docker.yaml +++ b/.github/workflows/push-docker.yaml @@ -33,7 +33,7 @@ jobs: ref: ${{ github.ref }} submodules: recursive - name: Setup Go Env - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: "1.24"
