Skip to content

Commit

Permalink
Specify go compiler minor version (#563)
Browse files Browse the repository at this point in the history
## What was changed?
Specify minor version of Go compiler

## Why?
It's now required. See golang/go#65568.
Without it on MacOS I get
```
go: downloading go1.22 (darwin/arm64)
go: download go1.22 for darwin/arm64: toolchain not available
```

## How did you test it?
`go mod tidy && go build -o temporal ./cmd/temporal/main.go`
  • Loading branch information
dandavison committed May 16, 2024
1 parent 0160df0 commit 83d4685
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/temporalio/cli

go 1.22
go 1.22.3

require (
github.com/alitto/pond v1.8.3
Expand Down

0 comments on commit 83d4685

Please sign in to comment.