From adae50b5ded7d720108d197f420d2c47b9e61712 Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz Date: Wed, 5 Aug 2026 11:13:17 -0400 Subject: [PATCH 1/2] [Github Actions] MacOS workflow now use updated version of vcpkg. --- .github/workflows/cpp-macos.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cpp-macos.yml b/.github/workflows/cpp-macos.yml index 4062d45..701b4df 100644 --- a/.github/workflows/cpp-macos.yml +++ b/.github/workflows/cpp-macos.yml @@ -9,6 +9,9 @@ on: # yamllint disable-line rule:truthy branches: ["main"] workflow_dispatch: +env: + VCPKG_VERSION: 2026.07.29 + jobs: test: name: C/C++ CMake CI Test @@ -29,9 +32,8 @@ jobs: - name: Install shell: bash run: | - export VCPKG_VERSION=2025.02.14 + export VCPKG_VERSION=${VCPKG_VERSION} git clone \ - --depth 1 \ --branch $VCPKG_VERSION \ https://github.com/microsoft/vcpkg.git \ --single-branch \ From f462507aa6b1106337958f1f3aeaf9b6235743e8 Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz Date: Wed, 5 Aug 2026 15:14:56 -0400 Subject: [PATCH 2/2] [CONFIG] Dependencies (minimum) fixed. --- vcpkg.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vcpkg.json b/vcpkg.json index 666a13b..57523d4 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -2,5 +2,6 @@ "dependencies": [ "catch2", "nlohmann-json" - ] + ], + "builtin-baseline": "dd3097e305afa53f7b4312371f62058d2e665320" }