From 73ae69c04cef8e8357cd327c89df69d3c53e2877 Mon Sep 17 00:00:00 2001 From: Teddy Ding Date: Mon, 30 Sep 2024 16:46:58 -0400 Subject: [PATCH] try pinning buf --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b004c73df2..7be0c1eb5d 100644 --- a/Makefile +++ b/Makefile @@ -135,7 +135,7 @@ endif #? proto-gen: Generate protobuf files proto-gen: check-proto-deps @echo "Generating Protobuf files" - @go run github.com/bufbuild/buf/cmd/buf@latest generate --path proto/tendermint + @go run github.com/bufbuild/buf/cmd/buf@v1.43.0 generate --path proto/tendermint @mv ./proto/tendermint/abci/types.pb.go ./abci/types/ @cp ./proto/tendermint/rpc/grpc/types.pb.go ./rpc/grpc .PHONY: proto-gen