Skip to content

Commit

Permalink
Merge pull request #15428 from jmhbnz/release-3.5-backport
Browse files Browse the repository at this point in the history
[3.5] Backport update to latest go 1.19.7 release
  • Loading branch information
ahrtr committed Mar 8, 2023
2 parents c602942 + f0aa228 commit b10adb6
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.19.6"
go-version: "1.19.7"
- run: date
- env:
TARGET: ${{ matrix.target }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/functional.yaml
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.19.6"
go-version: "1.19.7"
- run: date
- env:
TARGET: ${{ matrix.target }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/grpcproxy.yaml
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.19.6"
go-version: "1.19.7"
- run: date
- env:
TARGET: ${{ matrix.target }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.19.6"
go-version: "1.19.7"
- run: |
git config --global user.email "github-action@etcd.io"
git config --global user.name "Github Action"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.19.6"
go-version: "1.19.7"
- run: date
- env:
TARGET: ${{ matrix.target }}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -55,7 +55,7 @@ docker-remove:



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

TEST_SUFFIX = $(shell date +%s | base64 | head -c 15)
Expand Down
2 changes: 1 addition & 1 deletion api/go.mod
@@ -1,6 +1,6 @@
module go.etcd.io/etcd/api/v3

go 1.17
go 1.19

require (
github.com/coreos/go-semver v0.3.0
Expand Down
2 changes: 1 addition & 1 deletion client/pkg/go.mod
@@ -1,6 +1,6 @@
module go.etcd.io/etcd/client/pkg/v3

go 1.17
go 1.19

require (
github.com/coreos/go-systemd/v22 v22.3.2
Expand Down
2 changes: 1 addition & 1 deletion client/v2/go.mod
@@ -1,6 +1,6 @@
module go.etcd.io/etcd/client/v2

go 1.17
go 1.19

require (
github.com/json-iterator/go v1.1.11
Expand Down
2 changes: 1 addition & 1 deletion client/v3/go.mod
@@ -1,6 +1,6 @@
module go.etcd.io/etcd/client/v3

go 1.17
go 1.19

require (
github.com/dustin/go-humanize v1.0.0
Expand Down
2 changes: 1 addition & 1 deletion pkg/go.mod
@@ -1,6 +1,6 @@
module go.etcd.io/etcd/pkg/v3

go 1.17
go 1.19

require (
github.com/creack/pty v1.1.11
Expand Down
2 changes: 1 addition & 1 deletion raft/go.mod
@@ -1,6 +1,6 @@
module go.etcd.io/etcd/raft/v3

go 1.17
go 1.19

require (
github.com/cockroachdb/datadriven v1.0.2
Expand Down
2 changes: 1 addition & 1 deletion tools/mod/go.mod
@@ -1,6 +1,6 @@
module go.etcd.io/etcd/tools/v3

go 1.17
go 1.19

require (
github.com/akhenakh/hunspellgo v0.0.0-20160221122622-9db38fa26e19 // indirect
Expand Down

0 comments on commit b10adb6

Please sign in to comment.