Skip to content

Commit

Permalink
Bump Go to 1.20 (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanos authored Oct 12, 2023
1 parent b73c75a commit 2e3452c
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 1,740 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.18"
go-version: "1.20"
- name: Check
run: make check test
4 changes: 2 additions & 2 deletions .github/workflows/update-proto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.20

- uses: arduino/setup-protoc@v1
with:
version: '3.x'
version: "3.x"

- name: Re-build proto
run: |
Expand Down
2 changes: 1 addition & 1 deletion cmd/proxygenerator/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.temporal.io/api/cmd/proxygenerator

go 1.18
go 1.20

require (
go.temporal.io/api v1.14.0
Expand Down
15 changes: 12 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.temporal.io/api

go 1.16
go 1.20

require (
github.com/gogo/googleapis v1.4.1
Expand All @@ -10,9 +10,18 @@ require (
github.com/golang/protobuf v1.5.3
github.com/grpc-ecosystem/grpc-gateway v1.16.0
github.com/stretchr/testify v1.8.4
google.golang.org/genproto/googleapis/api v0.0.0-20231002182017-d307bd883b97
google.golang.org/grpc v1.58.2
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
google.golang.org/genproto v0.0.0-20231002182017-d307bd883b97 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20231002182017-d307bd883b97
google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 // indirect
google.golang.org/grpc v1.58.2
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 2e3452c

Please sign in to comment.