Skip to content

Commit f72f928

Browse files
renovate-botscotthart
authored andcommitted
chore(deps): update dependency abseil/abseil-cpp to v20240722.1
1 parent 81bb81e commit f72f928

10 files changed

+13
-13
lines changed

ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ RUN apt-get update && \
3939

4040
# ```bash
4141
WORKDIR /var/tmp/build/abseil-cpp
42-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.0.tar.gz | \
42+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
4343
tar -xzf - --strip-components=1 && \
4444
cmake \
4545
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/demo-rockylinux-9.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ ENV PATH=/usr/local/bin:${PATH}
6969

7070
# ```bash
7171
WORKDIR /var/tmp/build/abseil-cpp
72-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.0.tar.gz | \
72+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
7373
tar -xzf - --strip-components=1 && \
7474
cmake \
7575
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/demo-ubuntu-focal.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN apt-get update && \
3636

3737
# ```bash
3838
WORKDIR /var/tmp/build/abseil-cpp
39-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.0.tar.gz | \
39+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
4040
tar -xzf - --strip-components=1 && \
4141
cmake \
4242
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/demo-ubuntu-jammy.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN apt-get update && \
3636

3737
# ```bash
3838
WORKDIR /var/tmp/build/abseil-cpp
39-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.0.tar.gz | \
39+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
4040
tar -xzf - --strip-components=1 && \
4141
cmake \
4242
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/fedora-latest-cmake-gcc.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ ENV PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig:/usr/local/lib/pkgconfig:/usr/lib
7070
# We disable the inline namespace because otherwise Abseil LTS updates break our
7171
# `check-api` build.
7272
WORKDIR /var/tmp/build
73-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.0.tar.gz | \
73+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
7474
tar -xzf - --strip-components=1 && \
7575
cmake \
7676
-DCMAKE_BUILD_TYPE="Release" \

ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ ENV CXXFLAGS="-fclang-abi-compat=17"
7676
# We disable the inline namespace because otherwise Abseil LTS updates break our
7777
# `check-api` build.
7878
WORKDIR /var/tmp/build
79-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.0.tar.gz | \
79+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
8080
tar -xzf - --strip-components=1 && \
8181
cmake \
8282
-DCMAKE_BUILD_TYPE="Release" \

ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ ENV PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig:/usr/local/lib/pkgconfig:/usr/lib
6767
# with fewer layers).
6868

6969
WORKDIR /var/tmp/build
70-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.0.tar.gz | \
70+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
7171
tar -xzf - --strip-components=1 && \
7272
cmake \
7373
-DCMAKE_CXX_STANDARD=14 \

ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ ENV PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig:/usr/local/lib/pkgconfig:/usr/lib
6969
# with fewer layers).
7070

7171
WORKDIR /var/tmp/build
72-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.0.tar.gz | \
72+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
7373
tar -xzf - --strip-components=1 && \
7474
cmake \
7575
-DCMAKE_CXX_STANDARD=20 \

ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ RUN apt update && apt install -y openjdk-13-jre
5858
# image smaller (and with fewer layers)
5959

6060
WORKDIR /var/tmp/build/abseil-cpp
61-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.0.tar.gz | \
61+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
6262
tar -xzf - --strip-components=1 && \
6363
cmake \
6464
-DCMAKE_BUILD_TYPE="Release" \

doc/packaging.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ on Abseil.
647647

648648
```bash
649649
mkdir -p $HOME/Downloads/abseil-cpp && cd $HOME/Downloads/abseil-cpp
650-
curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.0.tar.gz | \
650+
curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
651651
tar -xzf - --strip-components=1 && \
652652
cmake \
653653
-DCMAKE_BUILD_TYPE=Release \
@@ -841,7 +841,7 @@ on Abseil.
841841

842842
```bash
843843
mkdir -p $HOME/Downloads/abseil-cpp && cd $HOME/Downloads/abseil-cpp
844-
curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.0.tar.gz | \
844+
curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
845845
tar -xzf - --strip-components=1 && \
846846
cmake \
847847
-DCMAKE_BUILD_TYPE=Release \
@@ -1197,7 +1197,7 @@ on Abseil.
11971197

11981198
```bash
11991199
mkdir -p $HOME/Downloads/abseil-cpp && cd $HOME/Downloads/abseil-cpp
1200-
curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.0.tar.gz | \
1200+
curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
12011201
tar -xzf - --strip-components=1 && \
12021202
cmake \
12031203
-DCMAKE_BUILD_TYPE=Release \
@@ -1444,7 +1444,7 @@ of C++ used to compile Abseil to anything that depends on Abseil.
14441444

14451445
```bash
14461446
mkdir -p $HOME/Downloads/abseil-cpp && cd $HOME/Downloads/abseil-cpp
1447-
curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.0.tar.gz | \
1447+
curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
14481448
tar -xzf - --strip-components=1 && \
14491449
cmake \
14501450
-DCMAKE_BUILD_TYPE=Release \

0 commit comments

Comments
 (0)