From c06f69bb009e51eb622a95d23730ea44409a90f5 Mon Sep 17 00:00:00 2001 From: Cody Oss <6331106+codyoss@users.noreply.github.com> Date: Wed, 12 Aug 2020 08:26:03 -0600 Subject: [PATCH] chore(internal/gapicgen): fix genbot (#2721) Go tooling was failing due to inconsistencies between protoc-gen-go versions. This was caused by #2715. Tested locally and the Dockerfile now builds. --- internal/gapicgen/cmd/genbot/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/gapicgen/cmd/genbot/Dockerfile b/internal/gapicgen/cmd/genbot/Dockerfile index 247151a016b..6b5353e3887 100644 --- a/internal/gapicgen/cmd/genbot/Dockerfile +++ b/internal/gapicgen/cmd/genbot/Dockerfile @@ -29,7 +29,7 @@ RUN go version # Install Go tools. RUN GO111MODULE=on go get \ - github.com/golang/protobuf/protoc-gen-go@v1.4.1 \ + github.com/golang/protobuf/protoc-gen-go@v1.4.2 \ golang.org/x/lint/golint@latest \ golang.org/x/tools/cmd/goimports@latest \ honnef.co/go/tools/cmd/staticcheck@latest \