diff --git a/WORKSPACE b/WORKSPACE index 7bded1f33b..c44e8d36d7 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -104,7 +104,7 @@ go_download_sdk( "https://mirrors.aliyun.com/golang/{}", "https://dl.google.com/go/{}", ], - version = "1.23.10", + version = "1.23.11", ) gazelle_dependencies(go_sdk = "go_sdk") diff --git a/build/image/base b/build/image/base index 4fd9883cfd..87b60d976b 100644 --- a/build/image/base +++ b/build/image/base @@ -30,7 +30,7 @@ RUN --mount=type=cache,target=/var/cache/dnf \ # install golang toolchain # renovate: datasource=docker depName=golang -ARG GOLANG_VERSION=1.23.10 +ARG GOLANG_VERSION=1.23.11 RUN OS=linux; ARCH=$([ "$(arch)" = "x86_64" ] && echo amd64 || echo arm64); \ curl -fsSL https://dl.google.com/go/go${GOLANG_VERSION}.linux-${ARCH}.tar.gz | tar -C /usr/local -xz ENV PATH /usr/local/go/bin/:$PATH diff --git a/build/image/parser_test b/build/image/parser_test index f81490b05b..fd7616459e 100644 --- a/build/image/parser_test +++ b/build/image/parser_test @@ -14,7 +14,7 @@ FROM rockylinux:9 -ENV GOLANG_VERSION 1.23.10 +ENV GOLANG_VERSION 1.23.11 ENV ARCH amd64 ENV GOLANG_DOWNLOAD_URL https://dl.google.com/go/go$GOLANG_VERSION.linux-$ARCH.tar.gz ENV GOPATH /home/prow/go diff --git a/dumpling/README.md b/dumpling/README.md index 2602241d02..5241091ba3 100644 --- a/dumpling/README.md +++ b/dumpling/README.md @@ -25,7 +25,7 @@ Building -------- 0. Under directory `tidb` -1. Install Go 1.23.10 or above +1. Install Go 1.23.11 or above 2. Run `make build_dumpling` to compile. The output is in `bin/dumpling`. 3. Run `make dumpling_unit_test` to run the unit tests. 4. Run `make dumpling_integration_test` to run integration tests. For integration test: diff --git a/go.mod b/go.mod index 9832736de2..cc184a738f 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/pingcap/tidb -go 1.23.10 +go 1.23.11 require ( cloud.google.com/go/kms v1.15.8