diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 45e981a6ad31..6be93115d592 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -58,7 +58,7 @@ jobs: id: build run: | go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest - go install google.golang.org/protobuf/cmd/protoc-gen-go@latest + go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.0 export PATH=$PATH:$GOPATH/bin export PATH=/usr/local/cuda/bin:$PATH GO_TAGS=p2p make dist @@ -89,7 +89,7 @@ jobs: sudo apt-get update sudo apt-get install -y --no-install-recommends libopencv-dev protobuf-compiler ccache go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest - go install google.golang.org/protobuf/cmd/protoc-gen-go@latest + go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.0 - name: Build stablediffusion run: | export PATH=$PATH:$GOPATH/bin @@ -123,7 +123,7 @@ jobs: run: | brew install protobuf grpc go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest - go install google.golang.org/protobuf/cmd/protoc-gen-go@latest + go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.0 - name: Build id: build run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index be7041877409..d7b45d59a0ce 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -93,7 +93,7 @@ jobs: sudo apt-get install -y cuda-nvcc-${CUDA_VERSION} libcublas-dev-${CUDA_VERSION} export CUDACXX=/usr/local/cuda/bin/nvcc - go install google.golang.org/protobuf/cmd/protoc-gen-go@latest + go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.0 go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest # The python3-grpc-tools package in 22.04 is too old diff --git a/Dockerfile b/Dockerfile index 74e979349fc5..d326894dfb49 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,7 @@ RUN curl -L -s https://go.dev/dl/go${GO_VERSION}.linux-${TARGETARCH}.tar.gz | ta ENV PATH $PATH:/root/go/bin:/usr/local/go/bin # Install grpc compilers -RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@latest && \ +RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.0 && \ go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest COPY --chmod=644 custom-ca-certs/* /usr/local/share/ca-certificates/ diff --git a/docs/content/docs/getting-started/build.md b/docs/content/docs/getting-started/build.md index 1cbe11df1e4e..7882aac42118 100644 --- a/docs/content/docs/getting-started/build.md +++ b/docs/content/docs/getting-started/build.md @@ -55,7 +55,7 @@ apt install cmake golang libgrpc-dev make protobuf-compiler-grpc python3-grpc-to After you have golang installed and working, you can install the required binaries for compiling the golang protobuf components via the following commands ```bash -go install google.golang.org/protobuf/cmd/protoc-gen-go@latest +go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.0 go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest ```