diff --git a/ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile b/ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile index fe357506bd3ce..7cf554cf547c9 100644 --- a/ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile +++ b/ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile @@ -29,7 +29,7 @@ RUN apt-get update && \ # #### Install CMake v3.22 WORKDIR /var/tmp/build/cmake -RUN curl -fsSL https://github.com/Kitware/cmake/archive/v3.31.12.tar.gz | \ +RUN curl -fsSL https://github.com/Kitware/cmake/archive/v4.3.4.tar.gz | \ tar -xzf - --strip-components=1 && \ ./bootstrap && make -j ${NCPU:-4} && make install diff --git a/doc/packaging.md b/doc/packaging.md index 3e00e72b6bc98..d9ea7afc805a9 100644 --- a/doc/packaging.md +++ b/doc/packaging.md @@ -1032,7 +1032,7 @@ sudo apt-get --no-install-recommends install -y apt-transport-https apt-utils \ #### Install CMake v3.22 mkdir -p $HOME/Downloads/cmake && cd $HOME/Downloads/cmake curl -fsSL -https://github.com/Kitware/cmake/archive/v3.31.12.tar.gz | \ +https://github.com/Kitware/cmake/archive/v4.3.4.tar.gz | \ tar -xzf - --strip-components=1 && \ ./bootstrap && make -j ${NCPU:-4} && sudo make install