From 58b246b80822ef151f42759b9e7280adacddd437 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 14:52:56 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 4 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-android.yml | 4 ++-- .github/workflows/build-ios.yml | 4 ++-- .github/workflows/harness-android.yml | 4 ++-- .github/workflows/harness-ios.yml | 4 ++-- .github/workflows/validate-js.yml | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) 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 }}