diff --git a/.test-infra/mock-apis/go.mod b/.test-infra/mock-apis/go.mod index 79513d24fcf2..3bbc5152c975 100644 --- a/.test-infra/mock-apis/go.mod +++ b/.test-infra/mock-apis/go.mod @@ -21,7 +21,7 @@ module github.com/apache/beam/test-infra/mock-apis go 1.21 -toolchain go1.24.1 +toolchain go1.24.4 require ( cloud.google.com/go/logging v1.8.1 diff --git a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy index 25efa002a36f..7867c4895c4e 100644 --- a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy +++ b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy @@ -2283,7 +2283,7 @@ class BeamModulePlugin implements Plugin { // This sets the whole project Go version. // The latest stable Go version can be checked at https://go.dev/dl/ - project.ext.goVersion = "go1.24.0" + project.ext.goVersion = "go1.24.4" // Minor TODO: Figure out if we can pull out the GOCMD env variable after goPrepare script // completion, and avoid this GOBIN substitution. diff --git a/sdks/go.mod b/sdks/go.mod index fc4d2f3ca759..af82aed96eeb 100644 --- a/sdks/go.mod +++ b/sdks/go.mod @@ -22,7 +22,7 @@ module github.com/apache/beam/sdks/v2 go 1.23.0 -toolchain go1.24.1 +toolchain go1.24.4 require ( cloud.google.com/go/bigquery v1.69.0 diff --git a/sdks/go/run_with_go_version.sh b/sdks/go/run_with_go_version.sh index 03bb7166102c..84272fbc65ba 100755 --- a/sdks/go/run_with_go_version.sh +++ b/sdks/go/run_with_go_version.sh @@ -37,7 +37,7 @@ set -e # # This variable is also used as the execution command downscript. # The list of downloadable versions are at https://go.dev/dl/ -GOVERS=go1.24.0 +GOVERS=go1.24.4 if ! command -v go &> /dev/null then