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] <support@github.com>

* fix?

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Scott Blum <dragonsinth@gmail.com>
This commit is contained in:
dependabot[bot]
2025-04-09 11:11:29 -04:00
committed by GitHub
parent b519ffc959
commit 58ccc6321e
4 changed files with 17 additions and 18 deletions

View File

@@ -50,9 +50,9 @@ generate: .tmp/protoc/bin/protoc
.PHONY: checkgenerate
checkgenerate: generate
git status --porcelain
@if [ -n "$$(git status --porcelain)" ]; then \
git diff; \
git status --porcelain -- '**/*.go'
@if [ -n "$$(git status --porcelain -- '**/*.go')" ]; then \
git diff -- '**/*.go'; \
exit 1; \
fi
@@ -69,7 +69,7 @@ vet:
.PHONY: staticcheck
staticcheck:
@go install honnef.co/go/tools/cmd/staticcheck@v0.5.1
@go install honnef.co/go/tools/cmd/staticcheck@2025.1.1
staticcheck -checks "inherit,-SA1019" ./...
.PHONY: ineffassign
@@ -79,7 +79,7 @@ ineffassign:
.PHONY: predeclared
predeclared:
@go install github.com/nishanths/predeclared@245576f9a85c
@go install github.com/nishanths/predeclared@51e8c974458a0f93dc03fe356f91ae1a6d791e6f
predeclared ./...
# Intentionally omitted from CI, but target here for ad-hoc reports.
@@ -95,8 +95,7 @@ errcheck:
errcheck ./...
.PHONY: test
test:
# The race detector requires CGO: https://github.com/golang/go/issues/6508
test: deps
CGO_ENABLED=1 go test -race ./...
.tmp/protoc/bin/protoc: ./Makefile ./download_protoc.sh