diff --git a/go.mod b/go.mod index 65dd1ded7..0e628d18b 100644 --- a/go.mod +++ b/go.mod @@ -204,8 +204,8 @@ replace github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.2 // allows us to specify that as an option. replace google.golang.org/protobuf => github.com/lightninglabs/protobuf-go-hex-display v1.30.0-hex-display -// If you change this please also update .github/pull_request_template.md and -// docs/INSTALL.md. +// If you change this please also update .github/pull_request_template.md, +// docs/INSTALL.md and GO_IMAGE in lnrpc/gen_protos_docker.sh. go 1.21.4 retract v0.0.2 diff --git a/lnrpc/gen_protos_docker.sh b/lnrpc/gen_protos_docker.sh index c5263bcd8..edf97e06b 100755 --- a/lnrpc/gen_protos_docker.sh +++ b/lnrpc/gen_protos_docker.sh @@ -6,7 +6,7 @@ set -e DIR="$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)" # golang docker image version used in this script. -GO_IMAGE=docker.io/library/golang:1.21.0-alpine +GO_IMAGE=docker.io/library/golang:1.21.4-alpine PROTOBUF_VERSION=$(docker run --rm -v $DIR/../:/lnd -w /lnd $GO_IMAGE \ go list -f '{{.Version}}' -m google.golang.org/protobuf)