From bc23e13d5fb9b35aae0a2eeaf8d7ee5603136bfa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Oct 2024 09:53:56 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 2.1.5 to 4.1.2 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.5 to 4.1.2. - [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/v2.1.5...v4.1.2) --- updated-dependencies: - dependency-name: actions/cache 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 4703b72e..f7cb2f28 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@v2.1.5 + - uses: actions/cache@v4.1.2 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@v2.1.5 + - uses: actions/cache@v4.1.2 id: cache-venv with: path: venv key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', '**/requirements-dev.txt') }} restore-keys: | ${{ runner.os }}-venv- - - uses: actions/cache@v2.1.5 + - uses: actions/cache@v4.1.2 id: cache-vendor with: path: vendor key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-ansible.yml') }} restore-keys: | ${{ runner.os }}-vendor- - - uses: actions/cache@v2.1.5 + - uses: actions/cache@v4.1.2 id: cache-shellcheck with: path: bin/shellcheck key: ${{ runner.os }}-shellcheck-${{ hashFiles('.github/workflows/ci.yml') }} restore-keys: | ${{ runner.os }}-shellcheck- - - uses: actions/cache@v2.1.5 + - uses: actions/cache@v4.1.2 with: path: ~/.cache/pre-commit key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}