Skip to content

Commit f666479

Browse files
committed
Downgrade setup-go to v5 on ARMv7
It has been accidentally bumped to v6 in some workflows for ARM, and it turns out that setup-go forgot to bump the node version to 24 until v6.2.0. This meant that the mistake wasn't discovered until that version was released yesterday. Fixes: 498b323 ("Bump setup-go to v6 (except for ARMv7)") Signed-off-by: Tom Wieczorek <twieczorek@mirantis.com>
1 parent 53ad0c7 commit f666479

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -309,8 +309,7 @@ jobs:
309309
run: .github/workflows/prepare-build-env.sh
310310

311311
- name: Set up Go
312-
# https://github.com/actions/setup-go/pull/666
313-
uses: actions/setup-go@b551c4cd70271da7ce09faf55f722b5e270c54d1
312+
uses: actions/setup-go@v5
314313
with:
315314
go-version: ${{ env.GO_VERSION }}
316315
cache: false
@@ -416,7 +415,7 @@ jobs:
416415
run: .github/workflows/prepare-build-env.sh
417416

418417
- name: Set up Go
419-
uses: actions/setup-go@v6
418+
uses: actions/setup-go@v5
420419
with:
421420
go-version: ${{ env.GO_VERSION }}
422421
cache: false

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ jobs:
399399
cat k0s.sig
400400
401401
- name: Set up Go for smoke tests
402-
uses: actions/setup-go@v6
402+
uses: actions/setup-go@v5
403403
with:
404404
go-version: ${{ env.GO_VERSION }}
405405
cache: false

0 commit comments

Comments
 (0)