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

pin run-vcpkg action version #9579

Merged
merged 1 commit into from Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/build_extensions/action.yml
Expand Up @@ -91,7 +91,7 @@ runs:

- name: Setup vcpkg
if: inputs.vcpkg_build == 1
uses: lukka/run-vcpkg@v11
uses: lukka/run-vcpkg@v11.1
with:
vcpkgGitCommitId: 501db0f17ef6df184fcdbfbe0f87cde2313b6ab1

Expand Down
4 changes: 2 additions & 2 deletions .github/actions/manylinux_2014_setup/action.yml
Expand Up @@ -83,10 +83,10 @@ runs:
run: scripts/setup_manylinux2014.sh gcc_4_8

# Note instead of using scripts/setup_manylinux2014.sh vcpkg, we prefer to use
# lukka/run-vcpkg@v11 here as it configures vcpkg to cache to GH actions.
# lukka/run-vcpkg@v11.1 here as it configures vcpkg to cache to GH actions.
- name: Setup vcpkg
if: ${{ inputs.vcpkg == 1 }}
uses: lukka/run-vcpkg@v11
uses: lukka/run-vcpkg@v11.1
with:
vcpkgGitCommitId: 501db0f17ef6df184fcdbfbe0f87cde2313b6ab1

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/ubuntu_18_setup/action.yml
Expand Up @@ -82,7 +82,7 @@ runs:

- name: Setup vcpkg
if: ${{ inputs.vcpkg == 1 }}
uses: lukka/run-vcpkg@v11
uses: lukka/run-vcpkg@v11.1
with:
vcpkgGitCommitId: 501db0f17ef6df184fcdbfbe0f87cde2313b6ab1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Wasm.yml
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
version: 'latest'
- name: Setup vcpkg
uses: lukka/run-vcpkg@v11
uses: lukka/run-vcpkg@v11.1
with:
vcpkgGitCommitId: 501db0f17ef6df184fcdbfbe0f87cde2313b6ab1

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/_extension_distribution.yml
Expand Up @@ -144,7 +144,7 @@ jobs:
aarch64_cross_compile: ${{ matrix.duckdb_arch == 'linux_arm64' && 1 }}

- name: Setup vcpkg
uses: lukka/run-vcpkg@v11
uses: lukka/run-vcpkg@v11.1
with:
vcpkgGitCommitId: ${{ inputs.vcpkg_commit }}

Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
git checkout ${{ inputs.duckdb_version }}

- name: Setup vcpkg
uses: lukka/run-vcpkg@v11
uses: lukka/run-vcpkg@v11.1
with:
vcpkgGitCommitId: ${{ inputs.vcpkg_commit }}

Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:
key: ${{ github.job }}-${{ matrix.duckdb_arch }}

- name: Setup vcpkg
uses: lukka/run-vcpkg@v11
uses: lukka/run-vcpkg@v11.1
with:
vcpkgGitCommitId: ${{ inputs.vcpkg_commit }}

Expand Down