From a13d3df89f14633cf07d8cd323f19b836685dc2b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 17:51:33 +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/ci.yml | 2 +- .github/workflows/ios-testflight.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c72b153..0cac6f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: cache: true - name: Cache Pub & .dart_tool - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.pub-cache diff --git a/.github/workflows/ios-testflight.yml b/.github/workflows/ios-testflight.yml index 798ee6b..d87821f 100644 --- a/.github/workflows/ios-testflight.yml +++ b/.github/workflows/ios-testflight.yml @@ -44,7 +44,7 @@ jobs: # Speed-ups: caches (optional) # ----------------------------- - name: Cache CocoaPods - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cocoapods key: ${{ runner.os }}-cocoapods-${{ hashFiles('hexagenapp/ios/Podfile.lock') }} @@ -52,7 +52,7 @@ jobs: ${{ runner.os }}-cocoapods- - name: Cache Flutter pub - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.pub-cache key: ${{ runner.os }}-pub-${{ hashFiles('hexagenapp/pubspec.lock') }}