Skip to content

Commit f3bd329

Browse files
authored
Update go version to 1.26.2 (#38131)
1 parent cd1a099 commit f3bd329

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/gh-actions-self-hosted-runners/arc/images/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN curl -OL https://nodejs.org/dist/v22.14.0/node-v22.14.0-linux-x64.tar.xz &&
3535
mv /usr/local/node-v22.14.0-linux-x64 /usr/local/node
3636
ENV PATH="${PATH}:/usr/local/node/bin"
3737
#Install Go
38-
ARG go_version=1.26.1
38+
ARG go_version=1.26.2
3939
RUN curl -OL https://go.dev/dl/go${go_version}.linux-amd64.tar.gz && \
4040
tar -C /usr/local -xzf go${go_version}.linux-amd64.tar.gz && \
4141
rm go${go_version}.linux-amd64.tar.gz

buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2310,7 +2310,7 @@ class BeamModulePlugin implements Plugin<Project> {
23102310

23112311
// This sets the whole project Go version.
23122312
// The latest stable Go version can be checked at https://go.dev/dl/
2313-
project.ext.goVersion = "go1.26.1"
2313+
project.ext.goVersion = "go1.26.2"
23142314

23152315
// Minor TODO: Figure out if we can pull out the GOCMD env variable after goPrepare script
23162316
// completion, and avoid this GOBIN substitution.

dev-support/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ RUN pip3 install --break-system-packages distlib==0.3.9 yapf==0.43.0 pytest plug
7474
###
7575
# Install Go
7676
###
77-
ENV DOWNLOAD_GO_VERSION=1.26.1
77+
ENV DOWNLOAD_GO_VERSION=1.26.2
7878
RUN wget https://golang.org/dl/go${DOWNLOAD_GO_VERSION}.linux-amd64.tar.gz && \
7979
tar -C /usr/local -xzf go${DOWNLOAD_GO_VERSION}.linux-amd64.tar.gz
8080
ENV GOROOT /usr/local/go

sdks/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module github.com/apache/beam/sdks/v2
2222

2323
go 1.26.0
2424

25-
toolchain go1.26.1
25+
toolchain go1.26.2
2626

2727
require (
2828
cloud.google.com/go/bigquery v1.72.0

sdks/go/run_with_go_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ set -e
3737
#
3838
# This variable is also used as the execution command downscript.
3939
# The list of downloadable versions are at https://go.dev/dl/
40-
GOVERS=go1.26.1
40+
GOVERS=go1.26.2
4141

4242
if ! command -v go &> /dev/null
4343
then

0 commit comments

Comments
 (0)