diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index cbd92a7..d9726f8 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -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 @@ -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') }} diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 987f0f6..5f01cc0 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -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') }} @@ -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 @@ -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') }} @@ -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') }} @@ -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') }} @@ -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') }} diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 9e52c30..2c7d122 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -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') }} @@ -56,7 +56,7 @@ 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') }} @@ -64,7 +64,7 @@ jobs: ${{ 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') }} @@ -72,14 +72,14 @@ jobs: ${{ 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 @@ -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') }}