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 2023/06/29 10:16:48 UTC

[beam] branch master updated: bump govers to 1.20.5 (#27293)

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 1446295d66d bump govers to 1.20.5 (#27293)
1446295d66d is described below

commit 1446295d66d394114d4f3e99980a598b9608881c
Author: James Fricker <80...@users.noreply.github.com>
AuthorDate: Thu Jun 29 20:16:40 2023 +1000

    bump govers to 1.20.5 (#27293)
---
 .github/gh-actions-self-hosted-runners/arc/images/Dockerfile        | 6 +++---
 .../src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy  | 2 +-
 sdks/go/run_with_go_version.sh                                      | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/gh-actions-self-hosted-runners/arc/images/Dockerfile b/.github/gh-actions-self-hosted-runners/arc/images/Dockerfile
index d037d2518f2..9ef10a7a09d 100644
--- a/.github/gh-actions-self-hosted-runners/arc/images/Dockerfile
+++ b/.github/gh-actions-self-hosted-runners/arc/images/Dockerfile
@@ -21,14 +21,14 @@
 FROM ghcr.io/actions-runner-controller/actions-runner-controller/actions-runner:ubuntu-20.04
 
 USER root
-#Install Node 
+#Install Node
 RUN curl -OL https://nodejs.org/dist/v18.16.0/node-v18.16.0-linux-x64.tar.xz && \
     tar -C /usr/local -xf node-v18.16.0-linux-x64.tar.xz && \
     rm node-v18.16.0-linux-x64.tar.xz && \
     mv /usr/local/node-v18.16.0-linux-x64 /usr/local/node
 ENV PATH="${PATH}:/usr/local/node/bin"
 #Install Go
-ARG go_version=1.20.4
+ARG go_version=1.20.5
 RUN curl -OL https://go.dev/dl/go${go_version}.linux-amd64.tar.gz && \
     tar -C /usr/local -xzf go${go_version}.linux-amd64.tar.gz && \
     rm go${go_version}.linux-amd64.tar.gz
@@ -49,4 +49,4 @@ ENV PATH="${PATH}:/usr/local/gradle/bin"
 
 # Needed to transfer path addtitions to runner environment
 RUN echo PATH=$PATH >> /runnertmp/.env
-USER runner
\ No newline at end of file
+USER runner
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 a7d41380ad0..4e6620c0bbc 100644
--- a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
+++ b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
@@ -2081,7 +2081,7 @@ class BeamModulePlugin implements Plugin<Project> {
       def goRootDir = "${project.rootDir}/sdks/go"
 
       // This sets the whole project Go version.
-      project.ext.goVersion = "go1.20.4"
+      project.ext.goVersion = "go1.20.5"
 
       // 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 b31c4477174..371b01324da 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.20.4
+GOVERS=go1.20.5
 
 if ! command -v go &> /dev/null
 then