File tree Expand file tree Collapse file tree 4 files changed +30
-1467
lines changed Expand file tree Collapse file tree 4 files changed +30
-1467
lines changed Original file line number Diff line number Diff line change @@ -19,19 +19,19 @@ jobs:
1919 working_directory : ~/repo
2020 docker :
2121 - image : cimg/go:1.19
22+ steps : *simple_job_steps
23+
24+ build-1-20 :
25+ working_directory : ~/repo
26+ docker :
27+ - image : cimg/go:1.20
2228 steps :
2329 - checkout
2430 - run :
2531 name : Run tests and linters
2632 command : |
2733 make ci
2834
29- build-1-20 :
30- working_directory : ~/repo
31- docker :
32- - image : cimg/go:1.20
33- steps : *simple_job_steps
34-
3535 build-1-21 :
3636 working_directory : ~/repo
3737 docker :
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ install:
2626
2727.PHONY : release
2828release :
29- @go install github.com/goreleaser/goreleaser@v1.5 .0
29+ @go install github.com/goreleaser/goreleaser@v1.10 .0
3030 goreleaser release --rm-dist
3131
3232.PHONY : docker
@@ -45,6 +45,7 @@ generate: .tmp/protoc/bin/protoc
4545checkgenerate : generate
4646 git status --porcelain
4747 @if [ -n " $$ (git status --porcelain)" ]; then \
48+ git diff; \
4849 exit 1; \
4950 fi
5051
Original file line number Diff line number Diff line change 11module github.com/fullstorydev/grpcurl
22
3- go 1.15
3+ go 1.18
44
55require (
66 github.com/golang/protobuf v1.5.3
77 github.com/jhump/protoreflect v1.15.2
88 google.golang.org/grpc v1.57.0
99 google.golang.org/protobuf v1.31.0
1010)
11+
12+ require (
13+ cloud.google.com/go/compute v1.19.1 // indirect
14+ cloud.google.com/go/compute/metadata v0.2.3 // indirect
15+ github.com/bufbuild/protocompile v0.6.0 // indirect
16+ github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
17+ github.com/cespare/xxhash/v2 v2.2.0 // indirect
18+ github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe // indirect
19+ github.com/cncf/xds/go v0.0.0-20230607035331-e9ce68804cb4 // indirect
20+ github.com/envoyproxy/go-control-plane v0.11.1-0.20230524094728-9239064ad72f // indirect
21+ github.com/envoyproxy/protoc-gen-validate v0.10.1 // indirect
22+ golang.org/x/net v0.9.0 // indirect
23+ golang.org/x/oauth2 v0.7.0 // indirect
24+ golang.org/x/sync v0.3.0 // indirect
25+ golang.org/x/sys v0.7.0 // indirect
26+ golang.org/x/text v0.9.0 // indirect
27+ google.golang.org/appengine v1.6.7 // indirect
28+ google.golang.org/genproto v0.0.0-20230526161137-0005af68ea54 // indirect
29+ google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9 // indirect
30+ google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 // indirect
31+ )
You can’t perform that action at this time.
0 commit comments