From e1939ac13644797d4fc5c001d0e318d2350a1542 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 May 2024 19:42:41 +0100 Subject: [PATCH] Bump actions/cache from 3 to 4 (#14) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yaml | 4 ++-- .github/workflows/coverage_and_lint.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3617d75..47fefda 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -29,7 +29,7 @@ jobs: - name: "Load cached poetry installation @ ${{ matrix.python-version }}" id: cached-poetry - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.local key: poetry-0 @@ -52,7 +52,7 @@ jobs: - name: "Load cached venv @ ${{ matrix.python-version }}" id: cached-pip-wheels - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv/ key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} diff --git a/.github/workflows/coverage_and_lint.yaml b/.github/workflows/coverage_and_lint.yaml index eeadcc4..72c109e 100644 --- a/.github/workflows/coverage_and_lint.yaml +++ b/.github/workflows/coverage_and_lint.yaml @@ -26,7 +26,7 @@ jobs: - name: "Load cached poetry installation @ ${{ matrix.python-version }}" id: cached-poetry - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.local key: poetry-0 @@ -49,7 +49,7 @@ jobs: - name: "Load cached venv @ ${{ matrix.python-version }}" id: cached-pip-wheels - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.venv/ key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}