Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .test-infra/mock-apis/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2283,7 +2283,7 @@ class BeamModulePlugin implements Plugin<Project> {

// 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.
Expand Down
2 changes: 1 addition & 1 deletion sdks/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sdks/go/run_with_go_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading