Skip to content

Commit

Permalink
chore(deps): update dependency microsoft/vcpkg to v2024.03.25 (#318)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Mar 26, 2024
1 parent 9a4197f commit 73f695e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ci/devtools.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] http://packages.c

WORKDIR /usr/local/vcpkg
# Pin vcpkg to the latest released version. Renovatebot sends PRs when there is a new release.
RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.03.19.tar.gz" | \
RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.03.25.tar.gz" | \
tar --strip-components=1 -zxf - \
&& ./bootstrap-vcpkg.sh \
&& /usr/local/vcpkg/vcpkg fetch cmake \
Expand Down
2 changes: 1 addition & 1 deletion cloud-run-hello-world/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ RUN apk update && \
# Use `vcpkg`, a package manager for C++, to install
WORKDIR /usr/local/vcpkg
ENV VCPKG_FORCE_SYSTEM_BINARIES=1
RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.03.19.tar.gz" | \
RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.03.25.tar.gz" | \
tar --strip-components=1 -zxf - \
&& ./bootstrap-vcpkg.sh -disableMetrics

Expand Down
2 changes: 1 addition & 1 deletion getting-started/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN apt update && \
FROM devtools AS build

WORKDIR /v/vcpkg
RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.03.19.tar.gz" | \
RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.03.25.tar.gz" | \
tar --strip-components=1 -zxf - \
&& ./bootstrap-vcpkg.sh -disableMetrics

Expand Down
2 changes: 1 addition & 1 deletion populate-bucket/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ FROM base AS devtools
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && apt install -y curl gzip tar unzip
WORKDIR /var/tmp/build/vcpkg
RUN curl -s -L https://github.com/Microsoft/vcpkg/archive/2024.03.19.tar.gz | \
RUN curl -s -L https://github.com/Microsoft/vcpkg/archive/2024.03.25.tar.gz | \
tar -xzf - --strip-components=1

# Install the typical development tools, zip + unzip are used by vcpkg to
Expand Down

0 comments on commit 73f695e

Please sign in to comment.