Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ios-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
xcode-version: '26' #latest-stable

- name: Restore DerivedData cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
id: cache-deriveddata
with:
path: DerivedData
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:

- name: Restore node_modules cache
if: steps.detect.outputs.type == 'reactnative' || steps.detect.outputs.type == 'expo'
uses: actions/cache@v4
uses: actions/cache@v5
id: node-modules-cache
with:
path: node_modules
Expand All @@ -133,7 +133,7 @@ jobs:
run: npm install

- name: Restore Pods cache
uses: actions/cache@v4
uses: actions/cache@v5
id: pods-cache
with:
path: |
Expand Down Expand Up @@ -349,7 +349,7 @@ jobs:
if-no-files-found: error

- name: Save DerivedData cache
uses: actions/cache/save@v4
uses: actions/cache/save@v5
if: always()
with:
path: DerivedData
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
xcode-version: ${{ env.XCODE_VERSION }}

- name: Restore DerivedData cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
id: cache-deriveddata
with:
path: DerivedData
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:

- name: Restore DerivedData cache
if: matrix.os == 'ios'
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
id: cache-deriveddata
with:
path: DerivedData
Expand Down
Loading