*: upgrade go1.23.11 (#62382)

close pingcap/tidb#62383
This commit is contained in:
Weizhen Wang
2025-07-14 13:12:36 +09:00
committed by GitHub
parent 3e2def6179
commit 4759f4e815
5 changed files with 5 additions and 5 deletions

View File

@ -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")

View File

@ -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

View File

@ -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

View File

@ -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:

2
go.mod
View File

@ -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