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
4 changes: 2 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
gradle-version: wrapper
cache-read-only: false
- name: Cache Metro bundler
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cache/metro
Expand All @@ -67,7 +67,7 @@ jobs:
restore-keys: |
${{ runner.os }}-metro-
- name: Cache node_modules
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:

- name: Cache node_modules for Kotlin
if: matrix.language == 'kotlin'
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }}
Expand All @@ -83,7 +83,7 @@ jobs:

- name: Cache Metro bundler for Kotlin
if: matrix.language == 'kotlin'
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cache/metro
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:

- name: Cache node_modules for Swift
if: matrix.language == 'swift'
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }}
Expand All @@ -216,7 +216,7 @@ jobs:

- name: Cache CocoaPods for Swift
if: matrix.language == 'swift'
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ios/Pods
key: ${{ runner.os }}-pods-v2-${{ hashFiles('ios/Podfile.lock') }}-${{ hashFiles('ios/Podfile') }}
Expand All @@ -226,7 +226,7 @@ jobs:

- name: Cache CocoaPods cache for Swift
if: matrix.language == 'swift'
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/Library/Caches/CocoaPods
key: ${{ runner.os }}-cocoapods-cache-v2-${{ hashFiles('ios/Podfile.lock') }}
Expand All @@ -235,7 +235,7 @@ jobs:

- name: Cache Xcode Derived Data for Swift
if: matrix.language == 'swift'
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ios/build
key: ${{ runner.os }}-xcode-deriveddata-${{ hashFiles('ios/**/*.swift', 'ios/**/*.m', 'ios/**/*.h', 'ios/Podfile.lock') }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
with:
xcode-version: "26.0"
- name: Cache node_modules
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }}
Expand All @@ -56,30 +56,30 @@ jobs:
- name: Install Node dependencies
run: npm ci
- name: Cache CocoaPods
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ios/Pods
key: ${{ runner.os }}-pods-v2-${{ hashFiles('ios/Podfile.lock') }}-${{ hashFiles('ios/Podfile') }}
restore-keys: |
${{ runner.os }}-pods-v2-${{ hashFiles('ios/Podfile.lock') }}-
${{ runner.os }}-pods-v2-
- name: Cache DerivedData
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/Library/Developer/Xcode/DerivedData
key: ${{ runner.os }}-deriveddata-${{ hashFiles('ios/Podfile.lock') }}-${{ hashFiles('**/*.swift', '**/*.m', '**/*.h') }}
restore-keys: |
${{ runner.os }}-deriveddata-${{ hashFiles('ios/Podfile.lock') }}-
${{ runner.os }}-deriveddata-
- name: Cache CocoaPods cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/Library/Caches/CocoaPods
key: ${{ runner.os }}-cocoapods-cache-v2-${{ hashFiles('ios/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-cocoapods-cache-v2-
- name: Cache Metro bundler
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cache/metro
Expand All @@ -88,7 +88,7 @@ jobs:
restore-keys: |
${{ runner.os }}-metro-
- name: Cache node_modules
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }}
Expand Down
Loading