From 67e3becab9c8c3cc95ac032ef614898ca99bbb1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 16 May 2024 13:45:54 +0200 Subject: [PATCH] Bump actions/cache to v4, and fix cache paths --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 13e3f86..6235547 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -62,11 +62,11 @@ jobs: - name: Cache Dependencies id: cache-dependencies if: success() && !(github.event_name == 'push' && contains(github.ref, 'refs/tags/')) # never cache dependencies for pushed tags - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | - External/build - !External/build/Intermediates + MoltenVK/External/build + !MoltenVK/External/build/Intermediates key: ${{ runner.os }}-${{ steps.prep.outputs.XCODE_VERSION }}-${{ matrix.platform }}-${{ hashFiles('fetchDependencies','ExternalRevisions/**','ExternalDependencies.xcodeproj/**','Scripts/**') }} - name: Disable ObjC MsgSend selector stubs for osxcross compatibility