From edce200fbbbffd0a6c8e08e050f9fb2998c10d7a Mon Sep 17 00:00:00 2001 From: Dmitri Plotnikov Date: Wed, 24 Jun 2026 17:19:04 -0700 Subject: [PATCH] Fix git SSL certificate verification in release_linux.sh. PiperOrigin-RevId: 937645224 --- release/kokoro/release_linux.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/release/kokoro/release_linux.sh b/release/kokoro/release_linux.sh index 6375ed2..868dd70 100755 --- a/release/kokoro/release_linux.sh +++ b/release/kokoro/release_linux.sh @@ -17,7 +17,8 @@ set -e if ! command -v pip3 &> /dev/null || ! command -v curl &> /dev/null || ! command -v docker &> /dev/null || ! command -v git &> /dev/null; then echo "Installing basic dependencies..." - apt-get update && apt-get install -y python3-pip curl git + apt-get update && apt-get install -y python3-pip curl git ca-certificates + git config --global http.sslCAinfo /etc/ssl/certs/ca-certificates.crt if ! command -v docker &> /dev/null; then echo "Installing docker CLI..."