Skip to content

Commit 7fcc00b

Browse files
authored
Merge pull request #58 from gone-io/v2.x
ci(github): update Go version setup and remove toolchain specification
2 parents bce1b24 + a875dac commit 7fcc00b

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
version: ["1.21.x", "1.22.x", "1.23.x", "1.24.x"]
21+
go-version: ["1.21", "1.22", "1.23", "1.24"]
2222
steps:
2323
- uses: actions/checkout@v4
2424
- uses: actions/setup-go@v5
2525
with:
26-
go-version: "stable"
26+
go-version: ${{ matrix.go-version }}
2727
- name: Gather dependencies
2828
run: go mod download
2929
- name: Run coverage

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
module github.com/gone-io/gone/v2
22

3-
go 1.24
4-
5-
toolchain go1.24.1
3+
go 1.21

0 commit comments

Comments
 (0)