fix(actions): update macOS build workflow to use actions/cache@v3 for improved caching performance

This commit is contained in:
Ozgur 2025-04-16 01:46:11 +02:00
parent 6c29eb93be
commit 84f9506852
No known key found for this signature in database
GPG Key ID: 66CDF27505A35546

View File

@ -44,7 +44,7 @@ jobs:
# Restore cache for build dependencies # Restore cache for build dependencies
- name: Restore Build Cache - name: Restore Build Cache
id: build-cache id: build-cache
uses: actions/cache@v4 uses: actions/cache@v3
with: with:
path: | path: |
DerivedDataCache DerivedDataCache
@ -171,7 +171,7 @@ jobs:
# Save cache for next workflow run # Save cache for next workflow run
- name: Save Build Cache - name: Save Build Cache
if: always() if: always()
uses: actions/cache/save@v4 uses: actions/cache/save@v3
with: with:
path: | path: |
DerivedDataCache DerivedDataCache