From 2f054d3d5d37b1f0caa0f7680404d97f251aa538 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 12:13:18 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 4.3.0 to 5.0.0 Bumps [actions/cache](https://github.com/actions/cache) from 4.3.0 to 5.0.0. - [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.3.0...v5.0.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9078835..e2676dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,35 +15,35 @@ jobs: - uses: ruby/setup-ruby@v1 with: bundler-cache: true - - uses: actions/cache@v4.3.0 + - uses: actions/cache@v5.0.0 id: cache-pip with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', '**/requirements-dev.txt') }} restore-keys: | ${{ runner.os }}-pip- - - uses: actions/cache@v4.3.0 + - uses: actions/cache@v5.0.0 id: cache-venv with: path: venv key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', '**/requirements-dev.txt') }} restore-keys: | ${{ runner.os }}-venv- - - uses: actions/cache@v4.3.0 + - uses: actions/cache@v5.0.0 id: cache-vendor with: path: vendor key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-ansible.yml') }} restore-keys: | ${{ runner.os }}-vendor- - - uses: actions/cache@v4.3.0 + - uses: actions/cache@v5.0.0 id: cache-shellcheck with: path: bin/shellcheck key: ${{ runner.os }}-shellcheck-${{ hashFiles('.github/workflows/ci.yml') }} restore-keys: | ${{ runner.os }}-shellcheck- - - uses: actions/cache@v4.3.0 + - uses: actions/cache@v5.0.0 with: path: ~/.cache/pre-commit key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}