From 3ee41f43dcc002282245c53ceed0e8104f7ffb30 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 22:30:49 +0000 Subject: [PATCH] ci(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/lint.yml | 4 ++-- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7a1908dea8..d7238f4c3c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -21,7 +21,7 @@ jobs: pip install -r requirements/dev.txt - name: Setup cache id: cache-pylint - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .pylint.d key: pylint @@ -43,7 +43,7 @@ jobs: pip install -r requirements/dev.txt - name: Setup cache id: cache-mypy - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .mypy_cache key: mypy diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 020847ffc1..aa77843552 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,7 +35,7 @@ jobs: pip install -r requirements/dev.txt - name: Setup cache id: cache-pytest - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .pytest_cache key: ${{ matrix.os }}-${{ matrix.python-version }}-pytest