From 92cc4f3b330d7eef4ad7c5187d47493e8c53cc4b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 5 Apr 2026 09:49:38 +0000 Subject: [PATCH] chore(deps): Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ios-build.yml | 8 ++++---- .github/workflows/ios-release.yml | 2 +- .github/workflows/release.yaml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ios-build.yml b/.github/workflows/ios-build.yml index d213a609..fc502e44 100644 --- a/.github/workflows/ios-build.yml +++ b/.github/workflows/ios-build.yml @@ -59,7 +59,7 @@ jobs: xcode-version: '26' #latest-stable - name: Restore DerivedData cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: cache-deriveddata with: path: DerivedData @@ -120,7 +120,7 @@ jobs: - name: Restore node_modules cache if: steps.detect.outputs.type == 'reactnative' || steps.detect.outputs.type == 'expo' - uses: actions/cache@v4 + uses: actions/cache@v5 id: node-modules-cache with: path: node_modules @@ -133,7 +133,7 @@ jobs: run: npm install - name: Restore Pods cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: pods-cache with: path: | @@ -349,7 +349,7 @@ jobs: if-no-files-found: error - name: Save DerivedData cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: always() with: path: DerivedData diff --git a/.github/workflows/ios-release.yml b/.github/workflows/ios-release.yml index 4306d746..7360082e 100644 --- a/.github/workflows/ios-release.yml +++ b/.github/workflows/ios-release.yml @@ -35,7 +35,7 @@ jobs: xcode-version: ${{ env.XCODE_VERSION }} - name: Restore DerivedData cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: cache-deriveddata with: path: DerivedData diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3250a8a5..fc3b24c1 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -67,7 +67,7 @@ jobs: - name: Restore DerivedData cache if: matrix.os == 'ios' - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: cache-deriveddata with: path: DerivedData