You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by lo...@apache.org on 2024/03/05 20:21:21 UTC

(beam) branch master updated: Update Go Version for artifacts to Go v1.21.8 (#30501)

This is an automated email from the ASF dual-hosted git repository.

lostluck pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 0440587898c Update Go Version for artifacts to Go v1.21.8 (#30501)
0440587898c is described below

commit 0440587898cb7b3dbf7e6fe95d0a6ff958e44643
Author: Robert Burke <lo...@users.noreply.github.com>
AuthorDate: Tue Mar 5 12:21:14 2024 -0800

    Update Go Version for artifacts to Go v1.21.8 (#30501)
    
    * Update BeamModulePlugin.groovy go version to 1.21.8
    
    * Update run_with_go_version.sh
---
 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 3157eaaf7ea..fae25d67b1b 100644
--- a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
+++ b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
@@ -2202,7 +2202,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.21.6"
+      project.ext.goVersion = "go1.21.8"
 
       // 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 aa31399193a..03d8d74e9f5 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.21.0
+GOVERS=go1.21.8
 
 if ! command -v go &> /dev/null
 then