This is an automated email from the ASF dual-hosted git repository.
yichi pushed a commit to branch release-2.39.0
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/release-2.39.0 by this push:
new a83cb6a2f92 [BEAM-14456] Update Go version to 1.18.2 (#17606)
a83cb6a2f92 is described below
commit a83cb6a2f927e8e3f2d4b5ae2a40d4d0220db104
Author: Robert Burke <[email protected]>
AuthorDate: Wed May 11 10:10:56 2022 -0700
[BEAM-14456] Update Go version to 1.18.2 (#17606)
Co-authored-by: lostluck <[email protected]>
---
buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy | 2 +-
sdks/go/run_with_go_version.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
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 75a8a504a2a..8341c5fff76 100644
--- a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
+++ b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
@@ -1908,7 +1908,7 @@ class BeamModulePlugin implements Plugin<Project> {
def goRootDir = "${project.rootDir}/sdks/go"
// This sets the whole project Go version.
- project.ext.goVersion = "go1.16.12"
+ project.ext.goVersion = "go1.18.2"
// 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/run_with_go_version.sh b/sdks/go/run_with_go_version.sh
index 0b2ce4324bc..b060e65f2e8 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.16.12
+GOVERS=go1.18.2
if ! command -v go &> /dev/null
then