From 2770e3e651a48a034e732486eefe20f31c332ef7 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 10 Aug 2026 19:44:29 +0000 Subject: [PATCH] chore(deps): update googletest to v1.18.0 --- bazel/workspace0.bzl | 6 +++--- .../dockerfiles/fedora-cmake-quickstart.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile | 2 +- ci/cloudbuild/dockerfiles/ubuntu-22.04-install.Dockerfile | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/bazel/workspace0.bzl b/bazel/workspace0.bzl index b0e46039c6b51..ade8f076d5d36 100644 --- a/bazel/workspace0.bzl +++ b/bazel/workspace0.bzl @@ -125,10 +125,10 @@ def gl_cpp_workspace0(name = None): http_archive, name = "googletest", urls = [ - "https://github.com/google/googletest/archive/v1.17.0.tar.gz", + "https://github.com/google/googletest/archive/v1.18.0.tar.gz", ], - sha256 = "65fab701d9829d38cb77c14acdc431d2108bfdbf8979e40eb8ae567edf10b27c", - strip_prefix = "googletest-1.17.0", + sha256 = "6e3191c1455468b3fc35a417fb565c1c5071aee1b7e7f85e30cf48a98d37d8b5", + strip_prefix = "googletest-1.18.0", ) # Load the googleapis dependency. diff --git a/ci/cloudbuild/dockerfiles/fedora-cmake-quickstart.Dockerfile b/ci/cloudbuild/dockerfiles/fedora-cmake-quickstart.Dockerfile index b19cd5905fa49..1b5f2164306ce 100644 --- a/ci/cloudbuild/dockerfiles/fedora-cmake-quickstart.Dockerfile +++ b/ci/cloudbuild/dockerfiles/fedora-cmake-quickstart.Dockerfile @@ -96,7 +96,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250814.2.tar.gz | ldconfig && cd /var/tmp && rm -fr build WORKDIR /var/tmp/build -RUN curl -fsSL https://github.com/google/googletest/archive/v1.17.0.tar.gz | \ +RUN curl -fsSL https://github.com/google/googletest/archive/v1.18.0.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE="Release" \ diff --git a/ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile b/ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile index 59104b8e25e64..473701ac4b9ed 100644 --- a/ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile +++ b/ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile @@ -96,7 +96,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250814.2.tar.gz | ldconfig && cd /var/tmp && rm -fr build WORKDIR /var/tmp/build -RUN curl -fsSL https://github.com/google/googletest/archive/v1.17.0.tar.gz | \ +RUN curl -fsSL https://github.com/google/googletest/archive/v1.18.0.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE="Release" \ diff --git a/ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile b/ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile index e321e2b937c48..c3f63e1fcc0c8 100644 --- a/ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile +++ b/ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile @@ -86,7 +86,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250814.2.tar.gz | cd /var/tmp && rm -fr build WORKDIR /var/tmp/build -RUN curl -fsSL https://github.com/google/googletest/archive/v1.17.0.tar.gz | \ +RUN curl -fsSL https://github.com/google/googletest/archive/v1.18.0.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_CXX_STANDARD=20 \ diff --git a/ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile b/ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile index 9ff742c279af0..aef630c010e79 100644 --- a/ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile +++ b/ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile @@ -61,7 +61,7 @@ RUN curl -fsSL https://github.com/google/re2/archive/2025-11-05.tar.gz | \ # Install googletest, remove the downloaded files and the temporary artifacts # after a successful build to keep the image smaller (and with fewer layers) WORKDIR /var/tmp/build -RUN curl -fsSL https://github.com/google/googletest/archive/v1.17.0.tar.gz | \ +RUN curl -fsSL https://github.com/google/googletest/archive/v1.18.0.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE="Release" \ diff --git a/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile b/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile index 200a068bce1b0..a79fa91c6dded 100644 --- a/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile +++ b/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile @@ -72,7 +72,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250814.2.tar.gz | cd /var/tmp && rm -fr build WORKDIR /var/tmp/build/googletest -RUN curl -fsSL https://github.com/google/googletest/archive/v1.17.0.tar.gz | \ +RUN curl -fsSL https://github.com/google/googletest/archive/v1.18.0.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE="Release" \ diff --git a/ci/cloudbuild/dockerfiles/ubuntu-22.04-install.Dockerfile b/ci/cloudbuild/dockerfiles/ubuntu-22.04-install.Dockerfile index cfc7db4be552b..8dad58aeaecd1 100644 --- a/ci/cloudbuild/dockerfiles/ubuntu-22.04-install.Dockerfile +++ b/ci/cloudbuild/dockerfiles/ubuntu-22.04-install.Dockerfile @@ -71,7 +71,7 @@ RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250814.2.tar.gz | cd /var/tmp && rm -fr build WORKDIR /var/tmp/build/googletest -RUN curl -fsSL https://github.com/google/googletest/archive/v1.17.0.tar.gz | \ +RUN curl -fsSL https://github.com/google/googletest/archive/v1.18.0.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE="Release" \