Skip to content

Commit

Permalink
fix: update go version in go.mod
Browse files Browse the repository at this point in the history
```sh
$ go version
go: downloading go1.22 (darwin/arm64)
go: download go1.22 for darwin/arm64: toolchain not available
```

after the change

```sh
$ go version
go: downloading go1.22.0 (darwin/arm64)
go version go1.22.0 darwin/arm64
```

Signed-off-by: Rui Chen <[email protected]>
  • Loading branch information
chenrui333 committed Feb 26, 2024
1 parent d432b0b commit 58ee048
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/runatlantis/atlantis

go 1.22
go 1.22.0

require (
github.com/Masterminds/sprig/v3 v3.2.3
Expand Down

0 comments on commit 58ee048

Please sign in to comment.