From c9a4243ca4a8beb511ca02931d3d62b69d0a1d61 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jun 2026 20:23:35 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 5.0.5 to 6.0.0 Bumps [actions/cache](https://github.com/actions/cache) from 5.0.5 to 6.0.0. - [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/27d5ce7f107fe9357f9df03efb73ab90386fccae...2c8a9bd7457de244a408f35966fab2fb45fda9c8) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test-android.yml | 2 +- .github/workflows/test-ios.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-android.yml b/.github/workflows/test-android.yml index 5ac3931..5d4a9ee 100644 --- a/.github/workflows/test-android.yml +++ b/.github/workflows/test-android.yml @@ -160,7 +160,7 @@ jobs: -dname "CN=Android Debug,O=Android,C=US" - name: Cache Gradle - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 with: path: | ~/.gradle/caches diff --git a/.github/workflows/test-ios.yml b/.github/workflows/test-ios.yml index 735b068..414fb62 100644 --- a/.github/workflows/test-ios.yml +++ b/.github/workflows/test-ios.yml @@ -99,7 +99,7 @@ jobs: # Cache the SPM source archives so cold resolves stay fast. - name: Cache SwiftPM (native iOS) if: steps.type.outputs.type == 'native' - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 with: path: | ~/Library/Caches/org.swift.swiftpm @@ -139,7 +139,7 @@ jobs: # the right Pods/ for the matrix entry's Podfile.lock. - name: Cache CocoaPods (RN iOS) if: steps.type.outputs.type == 'rn' - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 with: path: ~/Library/Caches/CocoaPods key: pods-${{ runner.os }}-${{ hashFiles(format('{0}/Podfile.lock', matrix.project)) }}