From 24cc0f579c99a3c9bdfcaaaca2f54bafd4ede7bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 May 2026 22:14:39 +0000 Subject: [PATCH] chore(ci): 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/e2e-tests.yml | 18 +++++++++--------- .github/workflows/web-e2e-tests.yml | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 70d452f878..cb95ded7c4 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -88,7 +88,7 @@ jobs: bun-version: latest - name: Cache node_modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('bun.lock') }} @@ -113,7 +113,7 @@ jobs: java-version: "17" - name: Cache CocoaPods - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/Library/Caches/CocoaPods @@ -124,7 +124,7 @@ jobs: - name: Cache iOS simulator build id: ios-build-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: apps/expo/build/PackRat-sim.tar.gz key: ios-sim-${{ runner.os }}-${{ hashFiles('apps/expo/**', 'packages/**', 'bun.lock') }} @@ -146,7 +146,7 @@ jobs: - name: Cache Maestro CLI id: maestro-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.maestro key: maestro-${{ env.MAESTRO_VERSION }}-${{ runner.os }} @@ -333,7 +333,7 @@ jobs: bun-version: latest - name: Cache node_modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('bun.lock') }} @@ -358,7 +358,7 @@ jobs: java-version: "17" - name: Cache Gradle - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.gradle/caches @@ -369,7 +369,7 @@ jobs: - name: Cache Maestro CLI id: maestro-cache-android - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.maestro key: maestro-${{ env.MAESTRO_VERSION }}-${{ runner.os }} @@ -385,7 +385,7 @@ jobs: - name: Cache Android APK build id: android-build-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: apps/expo/build/PackRat.apk key: android-apk-${{ runner.os }}-${{ hashFiles('apps/expo/**', 'packages/**', 'bun.lock') }} @@ -413,7 +413,7 @@ jobs: sudo udevadm trigger --name-match=kvm - name: AVD cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: avd-cache with: path: | diff --git a/.github/workflows/web-e2e-tests.yml b/.github/workflows/web-e2e-tests.yml index ee58cc728d..12b8cad392 100644 --- a/.github/workflows/web-e2e-tests.yml +++ b/.github/workflows/web-e2e-tests.yml @@ -76,7 +76,7 @@ jobs: cache: true - name: Cache node_modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('bun.lock') }}