From 8ee973473d5ef1c3564507d18a14549b6592ba74 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Mar 2026 12:13:54 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 5.0.3 to 5.0.4 Bumps [actions/cache](https://github.com/actions/cache) from 5.0.3 to 5.0.4. - [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/v5.0.3...v5.0.4) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.4 dependency-type: direct:production update-type: version-update:semver-patch ... 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 bd239bb..002ba2a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,35 +12,35 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - uses: actions/cache@v5.0.3 + - uses: actions/cache@v5.0.4 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@v5.0.3 + - uses: actions/cache@v5.0.4 id: cache-venv with: path: venv key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', '**/requirements-dev.txt') }} restore-keys: | ${{ runner.os }}-venv- - - uses: actions/cache@v5.0.3 + - uses: actions/cache@v5.0.4 id: cache-container-structure-test with: path: bin/container-structure-test key: ${{ runner.os }}-container-structure-test-v1.19.1 restore-keys: | ${{ runner.os }}-container-structure-test- - - uses: actions/cache@v5.0.3 + - uses: actions/cache@v5.0.4 id: cache-shellcheck with: path: bin/shellcheck key: ${{ runner.os }}-shellcheck-${{ hashFiles('.github/workflows/ci.yml') }} restore-keys: | ${{ runner.os }}-shellcheck- - - uses: actions/cache@v5.0.3 + - uses: actions/cache@v5.0.4 with: path: ~/.cache/pre-commit key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}