From 53865b6e216a3489ae24c4d880226ff22debf350 Mon Sep 17 00:00:00 2001 From: RUN Date: Thu, 29 Jan 2026 16:49:10 +0100 Subject: [PATCH] fix go toolchain in oracle test build --- .ci/integration.cloudbuild.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/integration.cloudbuild.yaml b/.ci/integration.cloudbuild.yaml index 96bbbd8b9b..b4ed172779 100644 --- a/.ci/integration.cloudbuild.yaml +++ b/.ci/integration.cloudbuild.yaml @@ -943,7 +943,7 @@ steps: # Install the C compiler and Oracle SDK headers needed for cgo dnf install -y gcc oracle-instantclient-devel # Install Go - curl -L -o go.tar.gz "https://go.dev/dl/go1.25.1.linux-amd64.tar.gz" + curl -L -o go.tar.gz "https://go.dev/dl/go1.25.5.linux-amd64.tar.gz tar -C /usr/local -xzf go.tar.gz export PATH="/usr/local/go/bin:$$PATH"