Skip to content

Commit 82a6b78

Browse files
committed
fix: upgrade toolchain to go1.25
1 parent b899c9c commit 82a6b78

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/setup-go@v5
1313
with:
14-
go-version: 1.24.x
14+
go-version: 1.25.x
1515
- uses: actions/checkout@v4
1616
- uses: golangci/golangci-lint-action@v3
1717
with:
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/setup-go@v5
2424
with:
25-
go-version: 1.24.x
25+
go-version: 1.25.x
2626
- uses: actions/checkout@v4
2727
- run: go build ./cmd/goverter
2828
- run: go test ./...
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
- uses: actions/setup-go@v5
3434
with:
35-
go-version: 1.24.x
35+
go-version: 1.25.x
3636
- uses: actions/checkout@v4
3737
- run: go build ./cmd/goverter
3838
- run: go test -coverpkg ./... -coverprofile=coverage.txt -covermode=atomic ./...
@@ -49,7 +49,7 @@ jobs:
4949
steps:
5050
- uses: actions/setup-go@v5
5151
with:
52-
go-version: 1.24.x
52+
go-version: 1.25.x
5353
- uses: actions/checkout@v4
5454
- run: |
5555
go get -u golang.org/x/tools
@@ -75,7 +75,7 @@ jobs:
7575
steps:
7676
- uses: actions/setup-go@v5
7777
with:
78-
go-version: 1.24.x
78+
go-version: 1.25.x
7979
- uses: actions/checkout@v4
8080
- run: mkdir covdata
8181
- run: GOCOVERDIR="$PWD/covdata" go generate ./...

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/jmattheis/goverter
22

33
go 1.23.0
44

5-
toolchain go1.24.5
5+
toolchain go1.25.0
66

77
require (
88
github.com/dave/jennifer v1.6.0

0 commit comments

Comments
 (0)