Skip to content

Commit 8c4d967

Browse files
committed
Go 1.24
1 parent 108c680 commit 8c4d967

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

.tool-versions

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
golang 1.24.0
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
changelog:
2+
- type: DEPENDENCY_BUMP
3+
description: Bumped the go version to 1.24.0
4+
dependencyOwner: golang
5+
dependencyRepo: go
6+
dependencyTag: v1.24.0

cloudbuild-cache.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
options:
22
env:
3-
- "_GO_VERSION=1.23.3"
3+
- "_GO_VERSION=1.24.0"
44

55
steps:
66
- name: gcr.io/cloud-builders/gsutil

docs/content/guides/dev/setting-up-dev-environment.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Developing on Gloo Gateway requires the following to be installed on your system
1212

1313
- [`Make`](https://www.gnu.org/software/make/)
1414
- [`Git`](https://git-scm.com/)
15-
- [`Go`](https://golang.org/) (`solo-io` projects are built using version `1.23.3`)
15+
- [`Go`](https://golang.org/) (`solo-io` projects are built using version `1.24.0`)
1616
- `Protoc` (`solo-io` projects are built using version `3.6.1`)
1717
- Standard development tools like `gcc`
1818

@@ -28,7 +28,7 @@ xcode-select --install
2828
# install version of go in go.mod
2929
############################################
3030
# - macOS:
31-
brew install go@1.23
31+
brew install go@1.24
3232
# - other operating systems:
3333
# follow directions at https://go.dev/doc/install
3434

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/solo-io/gloo
22

3-
go 1.23.3
3+
go 1.24.0
44

55
// Note for developers: upgrading go will also require upgrading go in the following files:
66
// ./cloudbuild-cache.yaml,

0 commit comments

Comments
 (0)