Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency microsoft/vcpkg to v2024.09.30 #334

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/devtools.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,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.04.26.tar.gz" | \
RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.09.30.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.04.26.tar.gz" | \
RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.09.30.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.04.26.tar.gz" | \
RUN curl -sSL "https://github.com/Microsoft/vcpkg/archive/2024.09.30.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.04.26.tar.gz | \
RUN curl -s -L https://github.com/Microsoft/vcpkg/archive/2024.09.30.tar.gz | \
tar -xzf - --strip-components=1

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