From cfe0c239a0e4f4b40bb095368acb347997d0aebc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 25 Apr 2026 12:16:09 +0000 Subject: [PATCH] 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/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a16a666..fa7e69f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: # The CocoaPods spec repo is large (~1.5GB). Caching it shaves # 30-60s off cold runs. - name: Cache CocoaPods - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cocoapods @@ -61,7 +61,7 @@ jobs: # actions/cache@v5 the post-step fails when asked to save a path that # doesn't exist. - name: Cache SwiftPM build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .build key: ${{ runner.os }}-spm-${{ hashFiles('Package.swift', 'Package.resolved', 'Sources/**/*.swift', 'Tests/**/*.swift') }}