From d168fdcdf63ba396b2c3fa0a72e5a8b624d29fa7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Jan 2026 08:20:22 +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/analyze.yaml | 4 ++-- .github/workflows/test-and-build.yaml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/analyze.yaml b/.github/workflows/analyze.yaml index 66fe78e3..dff2f6f3 100644 --- a/.github/workflows/analyze.yaml +++ b/.github/workflows/analyze.yaml @@ -66,7 +66,7 @@ jobs: with: melos-version: "6.3.2" - name: Restore Cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: cache with: path: /home/linuxbrew/.linuxbrew @@ -78,7 +78,7 @@ jobs: export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install swift-format - name: Save Cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: steps.cache.outputs.cache-hit != 'true' with: path: /home/linuxbrew/.linuxbrew diff --git a/.github/workflows/test-and-build.yaml b/.github/workflows/test-and-build.yaml index 42cd704e..1572e232 100644 --- a/.github/workflows/test-and-build.yaml +++ b/.github/workflows/test-and-build.yaml @@ -105,7 +105,7 @@ jobs: with: melos-version: "6.3.2" - name: Cache podfiles - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: "**/Pods" key: ${{ runner.os }}-pods-${{ hashFiles('**/*.podspec') }} @@ -193,7 +193,7 @@ jobs: with: melos-version: "6.3.2" - name: Cache podfiles - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: "**/Pods" key: ${{ runner.os }}-pods-${{ hashFiles('**/*.podspec') }} @@ -250,7 +250,7 @@ jobs: - name: Setup Android SDK uses: android-actions/setup-android@v3 - name: Cache ADB keys - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.android/adb* key: adb-keys @@ -265,7 +265,7 @@ jobs: with: name: ${{ runner.os }}-build-artifact - name: Cache pub global packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.pub-cache key: ${{ runner.os }}-pub-cache-${{ env.patrol_cli_version }} @@ -373,14 +373,14 @@ jobs: with: name: ${{ runner.os }}-build-artifact - name: Cache podfiles - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: "**/Pods" key: ${{ runner.os }}-pods-${{ hashFiles('**/*.podspec') }} restore-keys: | ${{ runner.os }}-pods- - name: Cache pub global packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.pub-cache key: ${{ runner.os }}-pub-cache-${{ env.patrol_cli_version }}