Skip to content

Commit f07d4b5

Browse files
authored
Use setup-go v6 in CI (#621)
* Use setup-go v6 in CI x32 build is failing due to this issue: actions/setup-go#664
1 parent d94cf98 commit f07d4b5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@ jobs:
2828
build:
2929
strategy:
3030
matrix:
31-
go-version: [1.21.x]
31+
go-version: [1.24.x]
3232
# TODO: Get this working on windows-latest
3333
os: [ubuntu-latest]
3434
architecture: [x32, x64]
3535
include:
3636
- os: macos-latest
3737
architecture: arm64
38-
go-version: 1.21.x
38+
go-version: 1.24.x
3939
- os: macos-14-large
4040
architecture: x64
41-
go-version: 1.21.x
41+
go-version: 1.24.x
4242
name: Generate/Build/Test (${{ matrix.os }}, ${{ matrix.architecture }}, Go ${{ matrix.go-version }})
4343
runs-on: ${{ matrix.os }}
4444
steps:
4545
- uses: actions/checkout@v3
46-
- uses: actions/setup-go@v4
46+
- uses: actions/setup-go@v6
4747
with:
4848
go-version: ${{ matrix.go-version }}
4949
architecture: ${{ matrix.architecture }}
@@ -90,7 +90,7 @@ jobs:
9090
lint:
9191
strategy:
9292
matrix:
93-
go-version: [1.21.x]
93+
go-version: [1.24.x]
9494
os: [ubuntu-latest]
9595
dir: ["./", "./cmd", "./launcher"]
9696
name: Lint ${{ matrix.dir }} (${{ matrix.os }}, Go ${{ matrix.go-version }})
@@ -121,7 +121,7 @@ jobs:
121121
lintc:
122122
strategy:
123123
matrix:
124-
go-version: [1.21.x]
124+
go-version: [1.24.x]
125125
os: [ubuntu-latest]
126126
name: Lint CGO (${{ matrix.os }}, Go ${{ matrix.go-version }})
127127
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)