Skip to content

Commit 69a34c4

Browse files
Update builds to use go 1.20.5 (#3299)
* Upgrade builds to use golang 1.20.5 * bump golangci-lint * address lint issues and cl typo * revert exec go update
1 parent 53815ba commit 69a34c4

File tree

18 files changed

+118
-99
lines changed

18 files changed

+118
-99
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ env:
2727
PIP_VERSION: '22.0.4'
2828
REQUIREMENTS_PATH: "internal/buildscripts/packaging/tests/requirements.txt"
2929
RESULT_PATH: "~/testresults"
30-
GO_VERSION: 1.19.10
30+
GO_VERSION: 1.20.5
3131

3232
jobs:
3333
setup-environment:

.github/workflows/darwin-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up Go
3737
uses: actions/setup-go@v4
3838
with:
39-
go-version: 1.19.10
39+
go-version: 1.20.5
4040
cache-dependency-path: '**/go.sum'
4141

4242
- run: go env -w CGO_ENABLED=0

.github/workflows/gendependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- '.github/workflows/scripts/gendependabot.sh'
99

1010
env:
11-
GO_VERSION: 1.19.10
11+
GO_VERSION: 1.20.5
1212

1313
jobs:
1414
gendependabot:

.github/workflows/integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ concurrency:
2323
cancel-in-progress: true
2424

2525
env:
26-
GO_VERSION: "1.19.10"
26+
GO_VERSION: "1.20.5"
2727
GOTESPLIT_TOTAL: "10"
2828

2929
jobs:

.github/workflows/lint-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
cancel-in-progress: true
1414

1515
env:
16-
GO_VERSION: 1.19.10
16+
GO_VERSION: 1.20.5
1717

1818
jobs:
1919
lint:

.github/workflows/linux-package-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ env:
2525
PYTHON_VERSION: '3.10'
2626
PIP_VERSION: '22.0.4'
2727
REQUIREMENTS_PATH: "internal/buildscripts/packaging/tests/requirements.txt"
28-
GO_VERSION: 1.19.10
28+
GO_VERSION: 1.20.5
2929

3030
jobs:
3131
setup-environment:

.github/workflows/vuln-scans.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- '.trivyignore'
1212

1313
env:
14-
GO_VERSION: '1.19.10'
14+
GO_VERSION: '1.20.5'
1515

1616
concurrency:
1717
group: vuln-scans-${{ github.event.pull_request.number || github.ref }}

.github/workflows/win-package-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ concurrency:
2323
cancel-in-progress: true
2424

2525
env:
26-
GO_VERSION: 1.19.10
26+
GO_VERSION: 1.20.5
2727

2828
jobs:
2929
setup-environment:

.github/workflows/windows-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Set up Go
3636
uses: actions/setup-go@v4
3737
with:
38-
go-version: 1.19.10
38+
go-version: 1.20.5
3939
cache-dependency-path: '**/go.sum'
4040

4141
- name: Install golang dependency

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ fossa:
103103
fi
104104
105105
.go-cache:
106-
image: '${DOCKER_HUB_REPO}/golang:1.19.10'
106+
image: '${DOCKER_HUB_REPO}/golang:1.20.5'
107107
variables:
108108
GOPATH: "$CI_PROJECT_DIR/.go"
109109
before_script:

0 commit comments

Comments
 (0)