File tree Expand file tree Collapse file tree
.github/gh-actions-self-hosted-runners/arc/images
buildSrc/src/main/groovy/org/apache/beam/gradle Expand file tree Collapse file tree Original file line number Diff line number Diff 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
3636ENV PATH="${PATH}:/usr/local/node/bin"
3737# Install Go
38- ARG go_version=1.26.1
38+ ARG go_version=1.26.2
3939RUN 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
Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff 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
7878RUN 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
8080ENV GOROOT /usr/local/go
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ module github.com/apache/beam/sdks/v2
2222
2323go 1.26.0
2424
25- toolchain go1.26.1
25+ toolchain go1.26.2
2626
2727require (
2828 cloud.google.com/go/bigquery v1.72.0
Original file line number Diff line number Diff line change 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
4242if ! command -v go & > /dev/null
4343then
You can’t perform that action at this time.
0 commit comments