File tree 4 files changed +17
-18
lines changed 4 files changed +17
-18
lines changed Original file line number Diff line number Diff line change @@ -9,12 +9,6 @@ shared_configs:
9
9
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
10
10
version : 2.1
11
11
jobs :
12
- build-1-21 :
13
- working_directory : ~/repo
14
- docker :
15
- - image : cimg/go:1.21
16
- steps : *simple_job_steps
17
-
18
12
build-1-22 :
19
13
working_directory : ~/repo
20
14
docker :
25
19
working_directory : ~/repo
26
20
docker :
27
21
- image : cimg/go:1.23
22
+ steps : *simple_job_steps
23
+
24
+ build-1-24 :
25
+ working_directory : ~/repo
26
+ docker :
27
+ - image : cimg/go:1.24
28
28
steps :
29
29
- checkout
30
30
- run :
35
35
workflows :
36
36
pr-build-test :
37
37
jobs :
38
- - build-1-21
39
38
- build-1-22
40
39
- build-1-23
40
+ - build-1-24
Original file line number Diff line number Diff line change @@ -50,9 +50,9 @@ generate: .tmp/protoc/bin/protoc
50
50
51
51
.PHONY : checkgenerate
52
52
checkgenerate : generate
53
- git status --porcelain
54
- @if [ -n " $$ (git status --porcelain)" ]; then \
55
- git diff; \
53
+ git status --porcelain -- ' **/*.go '
54
+ @if [ -n " $$ (git status --porcelain -- '**/*.go' )" ]; then \
55
+ git diff -- ' **/*.go ' ; \
56
56
exit 1; \
57
57
fi
58
58
69
69
70
70
.PHONY : staticcheck
71
71
staticcheck :
72
- @go install honnef.co/go/tools/cmd/staticcheck@v0.5 .1
72
+ @go install honnef.co/go/tools/cmd/staticcheck@2025.1 .1
73
73
staticcheck -checks " inherit,-SA1019" ./...
74
74
75
75
.PHONY : ineffassign
@@ -79,7 +79,7 @@ ineffassign:
79
79
80
80
.PHONY : predeclared
81
81
predeclared :
82
- @go install github.com/nishanths/predeclared@245576f9a85c
82
+ @go install github.com/nishanths/predeclared@51e8c974458a0f93dc03fe356f91ae1a6d791e6f
83
83
predeclared ./...
84
84
85
85
# Intentionally omitted from CI, but target here for ad-hoc reports.
@@ -95,8 +95,7 @@ errcheck:
95
95
errcheck ./...
96
96
97
97
.PHONY : test
98
- test :
99
- # The race detector requires CGO: https://github.com/golang/go/issues/6508
98
+ test : deps
100
99
CGO_ENABLED=1 go test -race ./...
101
100
102
101
.tmp/protoc/bin/protoc : ./Makefile ./download_protoc.sh
Original file line number Diff line number Diff line change 1
1
module github.com/fullstorydev/grpcurl
2
2
3
3
go 1.21
4
- toolchain go1.23.7
4
+ toolchain go1.24.1
5
5
6
6
require (
7
7
github.com/golang/protobuf v1.5.4
8
8
github.com/jhump/protoreflect v1.17.0
9
9
google.golang.org/grpc v1.61.0
10
- google.golang.org/protobuf v1.36.5
10
+ google.golang.org/protobuf v1.36.6
11
11
)
12
12
13
13
require (
Original file line number Diff line number Diff line change @@ -116,8 +116,8 @@ google.golang.org/grpc v1.61.0 h1:TOvOcuXn30kRao+gfcvsebNEa5iZIiLkisYEkf7R7o0=
116
116
google.golang.org/grpc v1.61.0 /go.mod h1:VUbo7IFqmF1QtCAstipjG0GIoq49KvMe9+h1jFLBNJs =
117
117
google.golang.org/protobuf v1.26.0-rc.1 /go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw =
118
118
google.golang.org/protobuf v1.26.0 /go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc =
119
- google.golang.org/protobuf v1.36.5 h1:tPhr+woSbjfYvY6/GPufUoYizxw1cF/yFoxJ2fmpwlM =
120
- google.golang.org/protobuf v1.36.5 /go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE =
119
+ google.golang.org/protobuf v1.36.6 h1:z1NpPI8ku2WgiWnf+t9wTPsn6eP1L7ksHUlkfLvd9xY =
120
+ google.golang.org/protobuf v1.36.6 /go.mod h1:jduwjTPXsFjZGTmRluh+L6NjiWu7pchiJ2/5YcXBHnY =
121
121
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA =
122
122
gopkg.in/yaml.v3 v3.0.1 /go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM =
123
123
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099 /go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4 =
You can’t perform that action at this time.
0 commit comments