Skip to content

Commit 93bdd75

Browse files
committed
Update to golang 1.20 minor release.
Signed-off-by: James Blair <[email protected]>
1 parent 43f10cb commit 93bdd75

File tree

16 files changed

+16
-16
lines changed

16 files changed

+16
-16
lines changed

.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "Go",
55

66
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
7-
"image": "mcr.microsoft.com/devcontainers/go:1.19-bullseye",
7+
"image": "mcr.microsoft.com/devcontainers/go:1.20-bullseye",
88

99
// Features to add to the dev container. More info: https://containers.dev/features.
1010
"features": {

.github/workflows/e2e-arm64-template.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
# this is to prevent the job to run at forked projects
1313
if: github.repository == 'etcd-io/etcd'
1414
runs-on: [self-hosted, Linux, ARM64]
15-
container: golang:1.19-bullseye
15+
container: golang:1.20-bullseye
1616
defaults:
1717
run:
1818
shell: bash

.github/workflows/robustness-template-arm64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
test:
2727
timeout-minutes: 210
2828
runs-on: ${{ fromJson(inputs.runs-on) }}
29-
container: golang:1.19-bullseye
29+
container: golang:1.20-bullseye
3030
defaults:
3131
run:
3232
shell: bash

.github/workflows/tests-arm64-template.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# this is to prevent the job to run at forked projects
1818
if: github.repository == 'etcd-io/etcd'
1919
runs-on: [self-hosted, Linux, ARM64]
20-
container: golang:1.19-bullseye
20+
container: golang:1.20-bullseye
2121
defaults:
2222
run:
2323
shell: bash

.go-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.19.12
1+
1.20.7

api/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/api/v3
22

3-
go 1.19
3+
go 1.20
44

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

client/internal/v2/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/client/v2
22

3-
go 1.19
3+
go 1.20
44

55
require (
66
go.etcd.io/etcd/api/v3 v3.6.0-alpha.0

client/pkg/go.mod

+1-1
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.19
3+
go 1.20
44

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

client/v3/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/client/v3
22

3-
go 1.19
3+
go 1.20
44

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

etcdctl/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/etcdctl/v3
22

3-
go 1.19
3+
go 1.20
44

55
require (
66
github.com/bgentry/speakeasy v0.1.0

etcdutl/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/etcdutl/v3
22

3-
go 1.19
3+
go 1.20
44

55
replace (
66
go.etcd.io/etcd/api/v3 => ../api

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/v3
22

3-
go 1.19
3+
go 1.20
44

55
replace (
66
go.etcd.io/etcd/api/v3 => ./api

pkg/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/pkg/v3
22

3-
go 1.19
3+
go 1.20
44

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

server/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/server/v3
22

3-
go 1.19
3+
go 1.20
44

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

tests/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/tests/v3
22

3-
go 1.19
3+
go 1.20
44

55
replace (
66
go.etcd.io/etcd/api/v3 => ../api

tools/mod/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.etcd.io/etcd/tools/v3
22

3-
go 1.19
3+
go 1.20
44

55
require (
66
github.com/alexfalkowski/gocovmerge v1.1.8

0 commit comments

Comments
 (0)