Skip to content

Commit

Permalink
Merge pull request #149 from authzed/update-all-the-things
Browse files Browse the repository at this point in the history
several updates
  • Loading branch information
vroldanbet committed Oct 17, 2023
2 parents 2c0e5b5 + e447600 commit 987ed67
Show file tree
Hide file tree
Showing 29 changed files with 788 additions and 309 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on: # yamllint disable-line rule:truthy
types:
- "checks_requested"
env:
GO_VERSION: "~1.20.5"
GO_VERSION: "~1.21.3"
jobs:
test:
name: "Run Integration Tests"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on: # yamllint disable-line rule:truthy
types:
- "checks_requested"
env:
GO_VERSION: "~1.20.7"
GO_VERSION: "~1.21.3"
jobs:
go-lint:
name: "Lint Go"
Expand Down
28 changes: 12 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,28 @@ go 1.18

require (
github.com/authzed/grpcutil v0.0.0-20230908193239-4286bb1d6403
github.com/envoyproxy/protoc-gen-validate v1.0.1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.15.2
github.com/jzelinskie/stringz v0.0.1
github.com/envoyproxy/protoc-gen-validate v1.0.2
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.0
github.com/jzelinskie/stringz v0.0.2
github.com/magefile/mage v1.15.0
github.com/stretchr/testify v1.8.4
golang.org/x/sync v0.2.0
google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9
google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19
google.golang.org/grpc v1.57.0
golang.org/x/sync v0.4.0
google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b
google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b
google.golang.org/grpc v1.58.3
google.golang.org/protobuf v1.31.0
)

require (
github.com/certifi/gocertifi v0.0.0-20210507211836-431795d63e8d // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/glog v1.1.1 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.10.0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/oauth2 v0.8.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
google.golang.org/genproto v0.0.0-20230526161137-0005af68ea54 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
github.com/rogpeppe/go-internal v1.11.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-20231012201019-e917dd12ba7a // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
67 changes: 29 additions & 38 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 987ed67

Please sign in to comment.