From 222e85880459b06930cd37dfe377666483675cbe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Apr 2026 02:01:57 +0000 Subject: [PATCH] deps(actions): 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/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 98e940f2..b29bbb43 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: cache: true - name: Cache pub dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.pub-cache diff --git a/.github/workflows/release-ios.yml b/.github/workflows/release-ios.yml index 6188ef5b..e7641f7b 100644 --- a/.github/workflows/release-ios.yml +++ b/.github/workflows/release-ios.yml @@ -28,7 +28,7 @@ jobs: cache: true - name: Cache pub dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.pub-cache @@ -37,7 +37,7 @@ jobs: restore-keys: ${{ runner.os }}-pub- - name: Cache CocoaPods - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ios/Pods key: pods-${{ hashFiles('ios/Podfile.lock') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 04ffb333..e3dcbb53 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,7 +34,7 @@ jobs: cache: true - name: Cache pub dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.pub-cache @@ -43,7 +43,7 @@ jobs: restore-keys: pub- - name: Cache Gradle - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.gradle/caches