Skip to content

Commit

Permalink
fix: toolchain not available
Browse files Browse the repository at this point in the history
After updating golang to 1.22 we have error:
```
go: download go1.22 for darwin/arm64: toolchain not available
```

golang/go#65568

Just set full version for golang to fix this issue
  • Loading branch information
juev committed Feb 10, 2024
1 parent 0e87ab3 commit 7ca67a9
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/kevincobain2000/gobrew

go 1.22
go 1.22.0

require (
github.com/Masterminds/semver v1.5.0
Expand Down

0 comments on commit 7ca67a9

Please sign in to comment.