From 6f8aead1fa44e0a4a52e81969384da4a38c160ab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 03:11:28 +0000 Subject: [PATCH] Bump actions/cache from 3.3.2 to 4.0.1 Bumps [actions/cache](https://github.com/actions/cache) from 3.3.2 to 4.0.1. - [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.3.2...v4.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 00224d2..8ea82f7 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -34,7 +34,7 @@ jobs: which python - name: Set up Poetry cache - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.0.1 with: path: venv key: venv-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }} @@ -63,7 +63,7 @@ jobs: print("::set-output name=result::{}".format(result)) - name: Restore pre-commit cache - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.0.1 with: path: ~/.cache/pre-commit key: ${{ steps.pre-commit-cache.outputs.result }}-${{ hashFiles('.pre-commit-config.yaml') }}