Skip to content

Commit ffc862c

Browse files
committed
build(deps): update protoc-gen-go from 1.28.1 to 1.35.2
1 parent e9754bd commit ffc862c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,10 @@ FROM docker.io/library/golang:1.23 as go-outline
202202
RUN go install github.com/ramya-rao-a/go-outline@latest
203203

204204
FROM docker.io/library/golang:1.23 as go-protoc
205-
RUN go install google.golang.org/protobuf/cmd/[email protected]
206-
RUN go install google.golang.org/grpc/cmd/[email protected]
205+
ARG PROTOC_GEN_GO_VERSION=v1.35.2
206+
ARG PROTOC_GEN_GO_GRPC_VERSION=v1.2
207+
RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@${PROTOC_GEN_GO_VERSION}
208+
RUN go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@${PROTOC_GEN_GO_GRPC_VERSION}
207209

208210
FROM docker.io/library/golang:1.23 as golangci-lint
209211
RUN go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest

0 commit comments

Comments
 (0)