Skip to content

Commit 9f0ec62

Browse files
committed
build: Set go version to 1.23 in go.mod
Hopefully we can do without the toolchain directive, and `go 1.23` will be enough, and we won't need to change it `go 1.23.0`. The latter is not great together with the way we use actions/setup-go, it would always build with 1.23.0 instead of the latest minor release. ``` uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} ```
1 parent 8133b43 commit 9f0ec62

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/crc-org/macadam
22

3-
go 1.22.6
4-
5-
toolchain go1.23.2
3+
go 1.23
64

75
require (
86
github.com/containers/common v0.61.1-0.20241125172552-a801fac4edc0

0 commit comments

Comments
 (0)