From 14a0deef3f53ffd4e9eb0348fb0c9402e5bd569e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 15:47:45 +0000 Subject: [PATCH] build(deps): bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/check.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 34f773a..714e258 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -24,7 +24,7 @@ jobs: echo "BIN_DIR=$(pipx environment -v PIPX_BIN_DIR)" >> $GITHUB_OUTPUT echo "LOCAL_VENVS=$(pipx environment -v PIPX_LOCAL_VENVS)" >> $GITHUB_OUTPUT - name: Cache poetry - uses: actions/cache@v3 + uses: actions/cache@v4 with: key: ${{ runner.os }}-pipx@${{ steps.pipx-env.outputs.VERSION }}-poetry@1.8.1 path: | @@ -79,7 +79,7 @@ jobs: echo "HEAD=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT echo "MERGE_BASE=$(git merge-base HEAD origin/main)" >> $GITHUB_OUTPUT - name: Cache mypy - uses: actions/cache@v3 + uses: actions/cache@v4 with: key: mypy-cache-${{ steps.git-rev.outputs.HEAD }} restore-keys: | @@ -107,7 +107,7 @@ jobs: echo "BIN_DIR=$(pipx environment -v PIPX_BIN_DIR)" >> $GITHUB_OUTPUT echo "LOCAL_VENVS=$(pipx environment -v PIPX_LOCAL_VENVS)" >> $GITHUB_OUTPUT - name: Cache poetry - uses: actions/cache@v3 + uses: actions/cache@v4 with: key: ${{ runner.os }}-pipx@${{ steps.pipx-env.outputs.VERSION }}-poetry@1.8.1 path: | @@ -120,7 +120,7 @@ jobs: poetry config virtualenvs.in-project true echo 'PYTHON = "./.venv/bin/python"' > .env - name: Cache python dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: key: | venv-without-dev-${{ runner.os }}-python@3.12-poetry@1.8.1-${{ hashFiles('poetry.lock') }}