From 84c8e5c88d2505ea1d5be6a07848f6c985768b13 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Feb 2025 00:25:48 +0000 Subject: [PATCH] ci: bump actions/cache from 4.2.0 to 4.2.2 Bumps [actions/cache](https://github.com/actions/cache) from 4.2.0 to 4.2.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/v4.2.0...v4.2.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/make-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/make-test.yml b/.github/workflows/make-test.yml index 25693ed..ad16d66 100644 --- a/.github/workflows/make-test.yml +++ b/.github/workflows/make-test.yml @@ -35,7 +35,7 @@ jobs: #---------------------------------------------- - name: Load cached Poetry installation id: cached-poetry - uses: actions/cache@v4.2.0 + uses: actions/cache@v4.2.2 with: path: ~/.local # the path depends on the OS key: poetry-0 # increment to reset cache @@ -53,7 +53,7 @@ jobs: #---------------------------------------------- - name: Load cached venv id: cached-poetry-dependencies - uses: actions/cache@v4.2.0 + uses: actions/cache@v4.2.2 with: path: .venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}