From 00627df2855137f9919afb06e777b520762a580b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 1 Apr 2026 13:05:02 +0000 Subject: [PATCH] Fix vcpkg version mismatch and update deprecated GitHub Actions to v4 Update vcpkgGitCommitId to match builtin-baseline in vcpkg.json (5dfa11cf) so that eigen3@3.4.1#1 and libigl@2.6.0 are available in the registry. Update actions/checkout, actions/cache, and actions/setup-dotnet from v3 to v4 to resolve Node.js 20 deprecation warnings. Agent-Logs-Url: https://github.com/xarthurx/igMesh/sessions/52dd344b-e068-4689-b815-03171269cf19 Co-authored-by: xarthurx <1921878+xarthurx@users.noreply.github.com> --- .github/workflows/build-release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 6f6c29c..4d645c0 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -30,7 +30,7 @@ jobs: CPP_PREBUILD_DIR: cppPrebuild steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -75,7 +75,7 @@ jobs: # Try to restore C++ build from cache - name: Cache C++ Build Artifacts id: cache-cpp - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ${{ env.CPP_Project }}/build @@ -93,7 +93,7 @@ jobs: if: steps.cache-cpp.outputs.cache-hit != 'true' uses: lukka/run-vcpkg@v11 with: - vcpkgGitCommitId: ce613c41372b23b1f51333815feb3edd87ef8a8b # 2025-04-09 version + vcpkgGitCommitId: 5dfa11cf88a8da8877b54fcbc5f6db78bc13f75a # matches builtin-baseline in vcpkg.json # Configure and build using CMake (only if cache miss) - name: Configure and Build with CMake @@ -229,7 +229,7 @@ jobs: YAK_TOKEN: ${{ secrets.YAK_TOKEN }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -240,7 +240,7 @@ jobs: uses: NuGet/setup-nuget@v2 - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: 8.0.x