Skip to content

Commit

Permalink
build: Set go version to 1.23 in go.mod
Browse files Browse the repository at this point in the history
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 }}
```
  • Loading branch information
cfergeau committed Feb 28, 2025
1 parent 8133b43 commit 9f0ec62
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/crc-org/macadam

go 1.22.6

toolchain go1.23.2
go 1.23

require (
github.com/containers/common v0.61.1-0.20241125172552-a801fac4edc0
Expand Down

0 comments on commit 9f0ec62

Please sign in to comment.