From fa1a0175b0f6f4b2d24ab9e10a7f04b382131e2c Mon Sep 17 00:00:00 2001 From: Xevion Date: Thu, 24 Jul 2025 03:29:22 -0500 Subject: [PATCH] ci: remove save-always, remove old vcpkg cache key, flush vcpkg caches --- .github/workflows/build.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3bd5d65..93117d5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -44,12 +44,10 @@ jobs: - name: Cache vcpkg uses: actions/cache@v4 with: - save-always: true # deprecated path: target/vcpkg - key: vcpkg-${{ runner.os }}-${{ matrix.target }}-${{ hashFiles('Cargo.toml', 'Cargo.lock') }} + key: A-vcpkg-${{ runner.os }}-${{ matrix.target }}-${{ hashFiles('Cargo.toml', 'Cargo.lock') }} restore-keys: | - ${{ runner.os }}-vcpkg - vcpkg-${{ runner.os }}-${{ matrix.target }}- + A-vcpkg-${{ runner.os }}-${{ matrix.target }}- - name: Vcpkg Linux Dependencies if: runner.os == 'Linux'