Skip to content

Commit 969cb61

Browse files
committed
Update automation to use Go 1.19
1 parent 85df5f2 commit 969cb61

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/actions/setup-default-test-properties/test-properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
"SPARK_VERSIONS": ["2", "3"]
1919
},
2020
"GoTestProperties": {
21-
"SUPPORTED_VERSIONS": ["1.18"]
21+
"SUPPORTED_VERSIONS": ["1.19"]
2222
}
2323
}

.github/workflows/build_playground_backend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
name: Build Playground Backend App
3535
runs-on: ubuntu-latest
3636
env:
37-
GO_VERSION: 1.18.0
37+
GO_VERSION: 1.19.3
3838
BEAM_VERSION: 2.40.0
3939
TERRAFORM_VERSION: 1.0.9
4040
STAND_SUFFIX: ''

.github/workflows/go_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
fetch-depth: 2
4545
- uses: actions/setup-go@v3
4646
with:
47-
go-version: '1.18'
47+
go-version: '1.19'
4848
- name: Delete old coverage
4949
run: "cd sdks/go/pkg && rm -rf .coverage || :"
5050
- name: Run coverage

.github/workflows/local_env_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- uses: actions/checkout@v3
4343
- uses: actions/setup-go@v3
4444
with:
45-
go-version: '1.18'
45+
go-version: '1.19'
4646
- name: "Installing local env dependencies"
4747
run: "sudo ./local-env-setup.sh"
4848
id: local_env_install_ubuntu
@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions/checkout@v3
5858
- uses: actions/setup-go@v3
5959
with:
60-
go-version: '1.18'
60+
go-version: '1.19'
6161
- name: "Installing local env dependencies"
6262
run: "./local-env-setup.sh"
6363
id: local_env_install_mac

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1972,7 +1972,7 @@ class BeamModulePlugin implements Plugin<Project> {
19721972
def goRootDir = "${project.rootDir}/sdks/go"
19731973

19741974
// This sets the whole project Go version.
1975-
project.ext.goVersion = "go1.18.1"
1975+
project.ext.goVersion = "go1.19.3"
19761976

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

release/go-licenses/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# limitations under the License.
1717
###############################################################################
1818

19-
FROM golang:1.18-bullseye
19+
FROM golang:1.19-bullseye
2020

2121
WORKDIR /usr/src/app
2222
COPY go.mod ./

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.18.1
40+
GOVERS=go1.19.3
4141

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

0 commit comments

Comments
 (0)