From 863b196ba47ec1f5b7cc698639adda5f82cb5a52 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 15:52:39 +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/docs.yml | 2 +- .github/workflows/tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 462883d..5144710 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,7 +13,7 @@ jobs: - name: Checkout source uses: actions/checkout@v3 - name: Cache tox - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .tox key: tox-${{hashFiles('pyproject.toml')}} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 259b6ea..13616c4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,7 +30,7 @@ jobs: uses: actions/checkout@v3 - name: Cache tox - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .tox key: tox-${{hashFiles('pyproject.toml') }}