Skip to content

Commit

Permalink
Update to go 1.23.x
Browse files Browse the repository at this point in the history
  • Loading branch information
rallen090 committed Sep 5, 2024
1 parent 5e59ea0 commit 9f7d371
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.x'
go-version: '1.23.x'

- name: Build
run: make chronoctl
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ chronoctl:
go-version-check:
# make sure you're running the right version of Go, otherwise builds/codegen/tests
# may have inconsistent results that are hard to debug.
go version | grep go1.22 || (echo "Error: you must be running go1.22.x" && exit 1)
go version | grep go1.23 || (echo "Error: you must be running go1.23.x" && exit 1)

.PHONY: release
release:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Chronosphere:

## Building

To build chronoctl, you must have Go 1.22 installed. A download link can be found at
To build chronoctl, you must have Go 1.23 installed. A download link can be found at
[go.dev](https://go.dev/doc/install).

Run `make chronoctl` to build the binary. It will be found under
Expand Down
2 changes: 1 addition & 1 deletion tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/chronosphereio/chronoctl-core/tools

go 1.22
go 1.23

replace github.com/chronosphereio/chronoctl-core => ../

Expand Down

0 comments on commit 9f7d371

Please sign in to comment.