From 5becd82fafd90865925969b5f90a2efe91a86dea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 21:22:11 +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 | 6 +++--- .github/workflows/swift-format.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85dbd73..bae6835 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: - name: Print Swift version run: swift --version - name: Cache Swift packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .build key: ${{ runner.os }}-spm-${{ hashFiles('Package.resolved') }} @@ -49,7 +49,7 @@ jobs: - name: Print Swift version run: swift --version - name: Cache Swift packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .build key: ${{ runner.os }}-spm-${{ hashFiles('Package.resolved') }} @@ -66,7 +66,7 @@ jobs: steps: - uses: actions/checkout@v5 - name: Cache Swift packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .build key: ${{ runner.os }}-spm-${{ hashFiles('Package.resolved') }} diff --git a/.github/workflows/swift-format.yml b/.github/workflows/swift-format.yml index ada5880..b934523 100644 --- a/.github/workflows/swift-format.yml +++ b/.github/workflows/swift-format.yml @@ -21,7 +21,7 @@ jobs: - name: Cache swift-format id: cache-swift-format - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /usr/local/bin/swift-format key: ${{ runner.os }}-swift-format-${{ hashFiles('.github/workflows/swift-format.yml') }}