Skip to content

Commit 7920213

Browse files
authored
Merge pull request #38356 from apache/fix-playground-go
Fix Playground CI Nightly job
2 parents ca70eaa + bcb0726 commit 7920213

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/beam_Playground_CI_Nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
uses: ./.github/actions/setup-environment-action
6767
with:
6868
python-version: default
69-
go-version: '1.25'
69+
go-version: '1.26'
7070
- name: Install requirements
7171
run: |
7272
cd $BEAM_ROOT_DIR/playground/infrastructure

.github/workflows/beam_Playground_Precommit.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@ jobs:
6262

6363
- name: Add GOPATH/bin to PATH
6464
run: echo "PATH=$PATH:$(go env GOPATH)/bin" >> $GITHUB_ENV
65-
65+
- name: Install Dependencies
66+
run: |
67+
sudo apt-get update --yes
68+
sudo apt-get install -y wget
6669
- name: Install sbt for running SCIO tests
6770
run: |
6871
sudo apt-get update --yes

playground/backend/containers/go/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ docker {
8888
buildArgs(
8989
['BASE_IMAGE' : project.rootProject.hasProperty(["base-image"]) ?
9090
project.rootProject["base-image"] :
91-
"golang:1.25",
91+
"golang:1.26",
9292
'SDK_TAG' : project.rootProject.hasProperty(["sdk-tag"]) ?
9393
project.rootProject["sdk-tag"] : project.rootProject.sdk_version,
9494
'SDK_TAG_LOCAL': project.rootProject.sdk_version,

0 commit comments

Comments
 (0)