From ee474c8062170144808e7f5f2e3766a583462316 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 Jul 2026 03:27:30 +0000 Subject: [PATCH] deps(actions): 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/ci.yml | 2 +- .github/workflows/release-ios.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb17f2bf..7840ee65 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -139,7 +139,7 @@ jobs: cache: true - name: Cache pub dependencies - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | ~/.pub-cache diff --git a/.github/workflows/release-ios.yml b/.github/workflows/release-ios.yml index 4c5e9d1e..6e5bbe3e 100644 --- a/.github/workflows/release-ios.yml +++ b/.github/workflows/release-ios.yml @@ -29,7 +29,7 @@ jobs: cache: true - name: Cache pub dependencies - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | ~/.pub-cache @@ -38,7 +38,7 @@ jobs: restore-keys: ${{ runner.os }}-pub- - name: Cache CocoaPods - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ios/Pods key: pods-${{ hashFiles('ios/Podfile.lock') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c4c9c485..fa1e5049 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: cache: true - name: Cache pub dependencies - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | ~/.pub-cache @@ -44,7 +44,7 @@ jobs: restore-keys: pub- - name: Cache Gradle - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | ~/.gradle/caches