From 0ec79e5304c6f631f6fd8ff2b1a2af10db68b893 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 1 Jul 2024 08:44:06 +0200 Subject: [PATCH] chore(deps): update dependency google/re2 to v2024-07-01 (#14404) --- .../dockerfiles/demo-debian-bullseye.Dockerfile | 2 +- .../dockerfiles/demo-debian-buster.Dockerfile | 2 +- .../dockerfiles/demo-opensuse-leap.Dockerfile | 2 +- .../dockerfiles/demo-rockylinux-8.Dockerfile | 2 +- .../dockerfiles/demo-rockylinux-9.Dockerfile | 2 +- .../dockerfiles/demo-ubuntu-focal.Dockerfile | 2 +- .../dockerfiles/ubuntu-20.04-install.Dockerfile | 2 +- doc/packaging.md | 12 ++++++------ 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile b/ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile index 42bb6feddad15..20302b6959f9f 100644 --- a/ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile +++ b/ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile @@ -108,7 +108,7 @@ RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v27.2.tar.gz # ```bash WORKDIR /var/tmp/build/re2 -RUN curl -fsSL https://github.com/google/re2/archive/2024-06-01.tar.gz | \ +RUN curl -fsSL https://github.com/google/re2/archive/2024-07-01.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake -DCMAKE_BUILD_TYPE=Release \ -DBUILD_SHARED_LIBS=ON \ diff --git a/ci/cloudbuild/dockerfiles/demo-debian-buster.Dockerfile b/ci/cloudbuild/dockerfiles/demo-debian-buster.Dockerfile index e213a3120f6c2..645fe9f273e69 100644 --- a/ci/cloudbuild/dockerfiles/demo-debian-buster.Dockerfile +++ b/ci/cloudbuild/dockerfiles/demo-debian-buster.Dockerfile @@ -119,7 +119,7 @@ RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v27.2.tar.gz # ```bash WORKDIR /var/tmp/build/re2 -RUN curl -fsSL https://github.com/google/re2/archive/2024-06-01.tar.gz | \ +RUN curl -fsSL https://github.com/google/re2/archive/2024-07-01.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake -DCMAKE_BUILD_TYPE=Release \ -DBUILD_SHARED_LIBS=ON \ diff --git a/ci/cloudbuild/dockerfiles/demo-opensuse-leap.Dockerfile b/ci/cloudbuild/dockerfiles/demo-opensuse-leap.Dockerfile index 902c663c95086..9fb1f6f89d9ba 100644 --- a/ci/cloudbuild/dockerfiles/demo-opensuse-leap.Dockerfile +++ b/ci/cloudbuild/dockerfiles/demo-opensuse-leap.Dockerfile @@ -53,7 +53,7 @@ ENV PATH=/usr/local/bin:${PATH} # ```bash WORKDIR /var/tmp/build/re2 -RUN curl -fsSL https://github.com/google/re2/archive/2024-06-01.tar.gz | \ +RUN curl -fsSL https://github.com/google/re2/archive/2024-07-01.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ diff --git a/ci/cloudbuild/dockerfiles/demo-rockylinux-8.Dockerfile b/ci/cloudbuild/dockerfiles/demo-rockylinux-8.Dockerfile index 53ce10e865d05..c1b769b53d2d0 100644 --- a/ci/cloudbuild/dockerfiles/demo-rockylinux-8.Dockerfile +++ b/ci/cloudbuild/dockerfiles/demo-rockylinux-8.Dockerfile @@ -106,7 +106,7 @@ RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v27.2.tar.gz # ```bash WORKDIR /var/tmp/build/re2 -RUN curl -fsSL https://github.com/google/re2/archive/2024-06-01.tar.gz | \ +RUN curl -fsSL https://github.com/google/re2/archive/2024-07-01.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake -DCMAKE_BUILD_TYPE=Release \ -DBUILD_SHARED_LIBS=ON \ diff --git a/ci/cloudbuild/dockerfiles/demo-rockylinux-9.Dockerfile b/ci/cloudbuild/dockerfiles/demo-rockylinux-9.Dockerfile index d4fe905a8682a..592aafbf563a0 100644 --- a/ci/cloudbuild/dockerfiles/demo-rockylinux-9.Dockerfile +++ b/ci/cloudbuild/dockerfiles/demo-rockylinux-9.Dockerfile @@ -108,7 +108,7 @@ RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v27.2.tar.gz # ```bash WORKDIR /var/tmp/build/re2 -RUN curl -fsSL https://github.com/google/re2/archive/2024-06-01.tar.gz | \ +RUN curl -fsSL https://github.com/google/re2/archive/2024-07-01.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake -DCMAKE_BUILD_TYPE=Release \ -DBUILD_SHARED_LIBS=ON \ diff --git a/ci/cloudbuild/dockerfiles/demo-ubuntu-focal.Dockerfile b/ci/cloudbuild/dockerfiles/demo-ubuntu-focal.Dockerfile index 69a13ab64edfc..f02b0d9c8434d 100644 --- a/ci/cloudbuild/dockerfiles/demo-ubuntu-focal.Dockerfile +++ b/ci/cloudbuild/dockerfiles/demo-ubuntu-focal.Dockerfile @@ -77,7 +77,7 @@ RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v27.2.tar.gz # ```bash WORKDIR /var/tmp/build/re2 -RUN curl -fsSL https://github.com/google/re2/archive/2024-06-01.tar.gz | \ +RUN curl -fsSL https://github.com/google/re2/archive/2024-07-01.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake -DCMAKE_BUILD_TYPE=Release \ -DBUILD_SHARED_LIBS=ON \ diff --git a/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile b/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile index 1dbdfb3290d3d..6b78c67d1e5f7 100644 --- a/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile +++ b/ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile @@ -145,7 +145,7 @@ RUN curl -fsSL https://github.com/c-ares/c-ares/archive/refs/tags/cares-1_17_1.t cd /var/tmp && rm -fr build WORKDIR /var/tmp/build/re2 -RUN curl -fsSL https://github.com/google/re2/archive/2024-06-01.tar.gz | \ +RUN curl -fsSL https://github.com/google/re2/archive/2024-07-01.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake -DCMAKE_BUILD_TYPE=Release \ -DBUILD_SHARED_LIBS=ON \ diff --git a/doc/packaging.md b/doc/packaging.md index fa70e00f22ffb..7822a9dd33c3f 100644 --- a/doc/packaging.md +++ b/doc/packaging.md @@ -379,7 +379,7 @@ export PATH=/usr/local/bin:${PATH} ```bash mkdir -p $HOME/Downloads/re2 && cd $HOME/Downloads/re2 -curl -fsSL https://github.com/google/re2/archive/2024-06-01.tar.gz | \ +curl -fsSL https://github.com/google/re2/archive/2024-07-01.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake \ -DCMAKE_BUILD_TYPE=Release \ @@ -832,7 +832,7 @@ planning to use pkg-config. ```bash mkdir -p $HOME/Downloads/re2 && cd $HOME/Downloads/re2 -curl -fsSL https://github.com/google/re2/archive/2024-06-01.tar.gz | \ +curl -fsSL https://github.com/google/re2/archive/2024-07-01.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake -DCMAKE_BUILD_TYPE=Release \ -DBUILD_SHARED_LIBS=ON \ @@ -1159,7 +1159,7 @@ planning to use pkg-config. ```bash mkdir -p $HOME/Downloads/re2 && cd $HOME/Downloads/re2 -curl -fsSL https://github.com/google/re2/archive/2024-06-01.tar.gz | \ +curl -fsSL https://github.com/google/re2/archive/2024-07-01.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake -DCMAKE_BUILD_TYPE=Release \ -DBUILD_SHARED_LIBS=ON \ @@ -1343,7 +1343,7 @@ planning to use pkg-config. ```bash mkdir -p $HOME/Downloads/re2 && cd $HOME/Downloads/re2 -curl -fsSL https://github.com/google/re2/archive/2024-06-01.tar.gz | \ +curl -fsSL https://github.com/google/re2/archive/2024-07-01.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake -DCMAKE_BUILD_TYPE=Release \ -DBUILD_SHARED_LIBS=ON \ @@ -1515,7 +1515,7 @@ planning to use pkg-config. ```bash mkdir -p $HOME/Downloads/re2 && cd $HOME/Downloads/re2 -curl -fsSL https://github.com/google/re2/archive/2024-06-01.tar.gz | \ +curl -fsSL https://github.com/google/re2/archive/2024-07-01.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake -DCMAKE_BUILD_TYPE=Release \ -DBUILD_SHARED_LIBS=ON \ @@ -1733,7 +1733,7 @@ planning to use pkg-config. ```bash mkdir -p $HOME/Downloads/re2 && cd $HOME/Downloads/re2 -curl -fsSL https://github.com/google/re2/archive/2024-06-01.tar.gz | \ +curl -fsSL https://github.com/google/re2/archive/2024-07-01.tar.gz | \ tar -xzf - --strip-components=1 && \ cmake -DCMAKE_BUILD_TYPE=Release \ -DBUILD_SHARED_LIBS=ON \