From eec92c8c568dfa2c35ff74dde5f5e37cff158ed8 Mon Sep 17 00:00:00 2001 From: Trent Clarke Date: Tue, 12 Nov 2024 11:31:48 +1100 Subject: [PATCH] Upgrade buildbox gci (#48741) The current verson of GCI in the buildbox treats the Go 1.23 `iter` package as an external package rather than part of the stdlib. This patch updates gci to a version that orders it correctly. --- build.assets/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.assets/Dockerfile b/build.assets/Dockerfile index b8bdbe0796402..133e4106cd0d2 100644 --- a/build.assets/Dockerfile +++ b/build.assets/Dockerfile @@ -318,7 +318,7 @@ RUN go install "github.com/gogo/protobuf/protoc-gen-gogofast@$GOGO_PROTO_TAG" RUN go install github.com/google/addlicense@v1.0.0 # Install GCI. -RUN go install github.com/daixiang0/gci@v0.12.3 +RUN go install github.com/daixiang0/gci@v0.13.5 # Install gotestsum. RUN go install gotest.tools/gotestsum@v1.10.1