Skip to content

Commit cd0e985

Browse files
authored
Update go to 1.19.10, update tidy actions to use 1.19 compat (#3269)
1 parent 66b4187 commit cd0e985

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ env:
2929
PIP_VERSION: '22.0.4'
3030
REQUIREMENTS_PATH: "internal/buildscripts/packaging/tests/requirements.txt"
3131
RESULT_PATH: "~/testresults"
32-
GO_VERSION: 1.19.6
32+
GO_VERSION: 1.19.10
3333

3434
jobs:
3535
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.6
39+
go-version: 1.19.10
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.6
11+
GO_VERSION: 1.19.10
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.6"
26+
GO_VERSION: "1.19.10"
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.6
16+
GO_VERSION: 1.19.10
1717

1818
jobs:
1919
lint:

.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.6'
14+
GO_VERSION: '1.19.10'
1515

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

.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.6
38+
go-version: 1.19.10
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.6'
106+
image: '${DOCKER_HUB_REPO}/golang:1.19.10'
107107
variables:
108108
GOPATH: "$CI_PROJECT_DIR/.go"
109109
before_script:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ gendependabot:
9393
.PHONY: tidy-all
9494
tidy-all:
9595
$(MAKE) $(FOR_GROUP_TARGET) TARGET="tidy"
96-
go mod tidy -compat=1.18
96+
go mod tidy -compat=1.19
9797

9898
.PHONY: install-tools
9999
install-tools:

Makefile.Common

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ lint: checklicense misspell impi
9898
.PHONY: tidy
9999
tidy:
100100
rm -fr go.sum
101-
$(GOCMD) mod tidy -compat=1.18
101+
$(GOCMD) mod tidy -compat=1.19
102102

103103
.PHONY: misspell
104104
misspell:

0 commit comments

Comments
 (0)