From fe318d1c091bf50dbcdfe66d01678aa1b6e3e00b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 16:58:04 +0000 Subject: [PATCH] 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 | 4 ++-- .github/workflows/contract-tests.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 151d1a2..1bf5a53 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: xcode-version: ${{ env.XCODE_VERSION }} - name: Cache SPM build artifacts - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: Packages/${{ matrix.package }}/.build key: spm-${{ runner.os }}-${{ matrix.package }}-${{ hashFiles(format('Packages/{0}/Package.swift', matrix.package)) }} @@ -67,7 +67,7 @@ jobs: xcode-version: ${{ env.XCODE_VERSION }} - name: Cache SPM checkouts and DerivedData - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: | ~/Library/Developer/Xcode/DerivedData diff --git a/.github/workflows/contract-tests.yml b/.github/workflows/contract-tests.yml index 1ab3b78..3cf4f0c 100644 --- a/.github/workflows/contract-tests.yml +++ b/.github/workflows/contract-tests.yml @@ -44,7 +44,7 @@ jobs: xcode-version: ${{ env.XCODE_VERSION }} - name: Cache SPM build artifacts - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: Packages/InterlinedKit/.build key: spm-contract-${{ runner.os }}-${{ hashFiles('Packages/InterlinedKit/Package.swift') }}