Skip to content

Commit 58ccc63

Browse files
Bump google.golang.org/protobuf from 1.36.5 to 1.36.6 (#515)
* Bump google.golang.org/protobuf from 1.36.5 to 1.36.6 Bumps google.golang.org/protobuf from 1.36.5 to 1.36.6. --- updated-dependencies: - dependency-name: google.golang.org/protobuf dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * fix? --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Scott Blum <[email protected]>
1 parent b519ffc commit 58ccc63

File tree

4 files changed

+17
-18
lines changed

4 files changed

+17
-18
lines changed

.circleci/config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@ shared_configs:
99
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
1010
version: 2.1
1111
jobs:
12-
build-1-21:
13-
working_directory: ~/repo
14-
docker:
15-
- image: cimg/go:1.21
16-
steps: *simple_job_steps
17-
1812
build-1-22:
1913
working_directory: ~/repo
2014
docker:
@@ -25,6 +19,12 @@ jobs:
2519
working_directory: ~/repo
2620
docker:
2721
- 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
2828
steps:
2929
- checkout
3030
- run:
@@ -35,6 +35,6 @@ jobs:
3535
workflows:
3636
pr-build-test:
3737
jobs:
38-
- build-1-21
3938
- build-1-22
4039
- build-1-23
40+
- build-1-24

Makefile

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ generate: .tmp/protoc/bin/protoc
5050

5151
.PHONY: checkgenerate
5252
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'; \
5656
exit 1; \
5757
fi
5858

@@ -69,7 +69,7 @@ vet:
6969

7070
.PHONY: staticcheck
7171
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
7373
staticcheck -checks "inherit,-SA1019" ./...
7474

7575
.PHONY: ineffassign
@@ -79,7 +79,7 @@ ineffassign:
7979

8080
.PHONY: predeclared
8181
predeclared:
82-
@go install github.com/nishanths/predeclared@245576f9a85c
82+
@go install github.com/nishanths/predeclared@51e8c974458a0f93dc03fe356f91ae1a6d791e6f
8383
predeclared ./...
8484

8585
# Intentionally omitted from CI, but target here for ad-hoc reports.
@@ -95,8 +95,7 @@ errcheck:
9595
errcheck ./...
9696

9797
.PHONY: test
98-
test:
99-
# The race detector requires CGO: https://github.com/golang/go/issues/6508
98+
test: deps
10099
CGO_ENABLED=1 go test -race ./...
101100

102101
.tmp/protoc/bin/protoc: ./Makefile ./download_protoc.sh

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
module github.com/fullstorydev/grpcurl
22

33
go 1.21
4-
toolchain go1.23.7
4+
toolchain go1.24.1
55

66
require (
77
github.com/golang/protobuf v1.5.4
88
github.com/jhump/protoreflect v1.17.0
99
google.golang.org/grpc v1.61.0
10-
google.golang.org/protobuf v1.36.5
10+
google.golang.org/protobuf v1.36.6
1111
)
1212

1313
require (

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ google.golang.org/grpc v1.61.0 h1:TOvOcuXn30kRao+gfcvsebNEa5iZIiLkisYEkf7R7o0=
116116
google.golang.org/grpc v1.61.0/go.mod h1:VUbo7IFqmF1QtCAstipjG0GIoq49KvMe9+h1jFLBNJs=
117117
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
118118
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=
121121
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
122122
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
123123
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=

0 commit comments

Comments
 (0)