Bump actions/cache to v4, and fix cache paths

This commit is contained in:
Rémi Verschelde
2024-05-16 13:45:54 +02:00
parent 6eef5b2ef3
commit 67e3becab9

View File

@@ -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