Skip to content

Commit 42f6302

Browse files
authored
Update go.mod, goreleaser for v1.8.8 (#413)
* Update go.mod, goreleaser for v1.8.8 * move ci check to go 1.20 * debug * ci diff
1 parent 743e60a commit 42f6302

File tree

4 files changed

+30
-1467
lines changed

4 files changed

+30
-1467
lines changed

.circleci/config.yml

+6-6
Original file line numberDiff line numberDiff 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:

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ install:
2626

2727
.PHONY: release
2828
release:
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
4545
checkgenerate: generate
4646
git status --porcelain
4747
@if [ -n "$$(git status --porcelain)" ]; then \
48+
git diff; \
4849
exit 1; \
4950
fi
5051

go.mod

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,31 @@
11
module github.com/fullstorydev/grpcurl
22

3-
go 1.15
3+
go 1.18
44

55
require (
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+
)

0 commit comments

Comments
 (0)