Skip to content

Commit b10adb6

Browse files
authored
Merge pull request #15428 from jmhbnz/release-3.5-backport
[3.5] Backport update to latest go 1.19.7 release
2 parents c602942 + f0aa228 commit b10adb6

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v2
1414
- uses: actions/setup-go@v2
1515
with:
16-
go-version: "1.19.6"
16+
go-version: "1.19.7"
1717
- run: date
1818
- env:
1919
TARGET: ${{ matrix.target }}

.github/workflows/functional.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- uses: actions/setup-go@v2
1414
with:
15-
go-version: "1.19.6"
15+
go-version: "1.19.7"
1616
- run: date
1717
- env:
1818
TARGET: ${{ matrix.target }}

.github/workflows/grpcproxy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- uses: actions/setup-go@v2
1414
with:
15-
go-version: "1.19.6"
15+
go-version: "1.19.7"
1616
- run: date
1717
- env:
1818
TARGET: ${{ matrix.target }}

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- uses: actions/checkout@v2
88
- uses: actions/setup-go@v2
99
with:
10-
go-version: "1.19.6"
10+
go-version: "1.19.7"
1111
- run: |
1212
git config --global user.email "[email protected]"
1313
git config --global user.name "Github Action"

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v2
1919
- uses: actions/setup-go@v2
2020
with:
21-
go-version: "1.19.6"
21+
go-version: "1.19.7"
2222
- run: date
2323
- env:
2424
TARGET: ${{ matrix.target }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ docker-remove:
5555

5656

5757

58-
GO_VERSION ?= 1.19.6
58+
GO_VERSION ?= 1.19.7
5959
ETCD_VERSION ?= $(shell git rev-parse --short HEAD || echo "GitNotFound")
6060

6161
TEST_SUFFIX = $(shell date +%s | base64 | head -c 15)

api/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/api/v3
22

3-
go 1.17
3+
go 1.19
44

55
require (
66
github.com/coreos/go-semver v0.3.0

client/pkg/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/client/pkg/v3
22

3-
go 1.17
3+
go 1.19
44

55
require (
66
github.com/coreos/go-systemd/v22 v22.3.2

client/v2/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/client/v2
22

3-
go 1.17
3+
go 1.19
44

55
require (
66
github.com/json-iterator/go v1.1.11

client/v3/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/client/v3
22

3-
go 1.17
3+
go 1.19
44

55
require (
66
github.com/dustin/go-humanize v1.0.0

pkg/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/pkg/v3
22

3-
go 1.17
3+
go 1.19
44

55
require (
66
github.com/creack/pty v1.1.11

raft/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/raft/v3
22

3-
go 1.17
3+
go 1.19
44

55
require (
66
github.com/cockroachdb/datadriven v1.0.2

tools/mod/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/tools/v3
22

3-
go 1.17
3+
go 1.19
44

55
require (
66
github.com/akhenakh/hunspellgo v0.0.0-20160221122622-9db38fa26e19 // indirect

0 commit comments

Comments
 (0)