From 0ef73dce4271819c2661550238280473d9ef2bec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 21:57:11 +0000 Subject: [PATCH] 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/build.yml | 6 +++--- .github/workflows/pull-request.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c18e14ba..2a5c1dec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,7 @@ jobs: uses: abatilo/actions-poetry@v2.3.0 with: poetry-version: 1.5.1 - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: cache-deps with: path: ~/.cache/pip @@ -37,11 +37,11 @@ jobs: - name: Install dependencies run: poetry install -E session - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: .mypy_cache key: mypy-${{ matrix.python-version }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: .pytest_cache key: pytest-${{ matrix.python-version }} diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 08a05ebc..65d15852 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -24,7 +24,7 @@ jobs: uses: abatilo/actions-poetry@v2.3.0 with: poetry-version: 1.5.1 - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: cache-deps with: path: ~/.cache/pip @@ -34,11 +34,11 @@ jobs: - name: Install dependencies run: poetry install -E session - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: .mypy_cache key: mypy-${{ matrix.python-version }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: .pytest_cache key: pytest-${{ matrix.python-version }}