diff --git a/.github/workflows/build-android.yml b/.github/workflows/build-android.yml index e45bdd48..868d00f0 100644 --- a/.github/workflows/build-android.yml +++ b/.github/workflows/build-android.yml @@ -43,7 +43,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - name: Restore node_modules from cache - uses: actions/cache@v4 + uses: actions/cache@v6 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -56,7 +56,7 @@ jobs: run: yarn install --frozen-lockfile --cwd example - name: Restore Gradle cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | ~/.gradle/caches diff --git a/.github/workflows/build-ios.yml b/.github/workflows/build-ios.yml index cabcf837..88f4230e 100644 --- a/.github/workflows/build-ios.yml +++ b/.github/workflows/build-ios.yml @@ -37,7 +37,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - name: Restore node_modules from cache - uses: actions/cache@v4 + uses: actions/cache@v6 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -59,7 +59,7 @@ jobs: working-directory: example/ios - name: Restore Pods cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | example/ios/Pods diff --git a/.github/workflows/harness-android.yml b/.github/workflows/harness-android.yml index 516b2566..6aaa41d0 100644 --- a/.github/workflows/harness-android.yml +++ b/.github/workflows/harness-android.yml @@ -123,7 +123,7 @@ jobs: java-package: jdk - name: Restore Gradle cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | ~/.gradle/caches @@ -147,7 +147,7 @@ jobs: ls /dev/kvm - name: AVD cache - uses: actions/cache@v4 + uses: actions/cache@v6 id: avd-cache with: path: | diff --git a/.github/workflows/harness-ios.yml b/.github/workflows/harness-ios.yml index 3e80f9a0..16e22760 100644 --- a/.github/workflows/harness-ios.yml +++ b/.github/workflows/harness-ios.yml @@ -128,7 +128,7 @@ jobs: run: sudo xcode-select -s "/Applications/Xcode_${{ env.XCODE_VERSION }}.app/Contents/Developer" - name: Restore Pods cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: example/ios/Pods key: ${{ runner.os }}-pods-fasttflite-${{ hashFiles('**/Podfile.lock', '**/Gemfile.lock') }} @@ -140,7 +140,7 @@ jobs: run: bundle exec pod install --project-directory=ios - name: Restore DerivedData cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: example/ios/build key: ${{ runner.os }}-dd-fasttflite-${{ hashFiles('**/Podfile.lock', '**/Gemfile.lock', '**/package.json', '**/bun.lock') }}-xcode${{ env.XCODE_VERSION }} diff --git a/.github/workflows/validate-js.yml b/.github/workflows/validate-js.yml index 14d08be4..4238e4e2 100644 --- a/.github/workflows/validate-js.yml +++ b/.github/workflows/validate-js.yml @@ -47,7 +47,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - name: Restore node_modules from cache - uses: actions/cache@v4 + uses: actions/cache@v6 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -87,7 +87,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - name: Restore node_modules from cache - uses: actions/cache@v4 + uses: actions/cache@v6 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }}