Skip to content

Commit

Permalink
go.mod: change version from 1.23 to 1.23.0
Browse files Browse the repository at this point in the history
1.23 is not a downloable release. Go mod should list the specific
toolchain that can be downloaded as mentioned here:
golang/go#62278 (comment)
Otherwise opening the project having a different version installed will
result in errors, e.g:

```
$ go version
go: downloading go1.23 (linux/amd64)
go: download go1.23 for linux/amd64: toolchain not available
```

Signed-off-by: Antonio Gutierrez <antonio.gutierrez1@ibm.com>
  • Loading branch information
Antonio Gutierrez committed Sep 9, 2024
1 parent beb4f7b commit 2f974e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/instana/instana-agent-operator

go 1.23
go 1.23.0

require (
github.com/Masterminds/goutils v1.1.1
Expand Down

0 comments on commit 2f974e2

Please sign in to comment.