From acdbb7de7ff116220e435b64f66f51c9e6e9a058 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Feb 2026 14:02:16 +0000 Subject: [PATCH] Bump actions/cache from 3 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 3 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/v3...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 c356f6c..b8f2439 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: with: ruby-version: 4.0.0 - name: Cache Ruby gems - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: vendor/bundle key: ${{ runner.os }}-bundle-4.0.0-${{ hashFiles('Gemfile.lock') }} @@ -39,7 +39,7 @@ jobs: with: ruby-version: ${{ matrix.ruby-version }} - name: Cache Ruby gems - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: vendor/bundle key: ${{ runner.os }}-bundle-${{ matrix.ruby-version }}-${{ hashFiles('Gemfile.lock') }}