From ff6c0f40cba71ea2c879d383647c76b4d6ee2b2c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 20:22:06 +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/dev_envs.yml | 2 +- .github/workflows/python.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dev_envs.yml b/.github/workflows/dev_envs.yml index 7f7f1f7b3d..b6fa73ec7f 100644 --- a/.github/workflows/dev_envs.yml +++ b/.github/workflows/dev_envs.yml @@ -33,7 +33,7 @@ jobs: fetch-depth: 0 - name: cache conda - uses: actions/cache@v3 + uses: actions/cache@v4 env: CACHE_NUMBER: 0 with: diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 22ed04854c..0805449e48 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -33,7 +33,7 @@ jobs: echo "::set-output name=dir::$(pip cache dir)" - name: pip cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-v4-${{ hashFiles('**/pyproject.toml') }} @@ -62,7 +62,7 @@ jobs: redis-version: 6 - name: tox cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .tox/ key: ${{ runner.os }}-tox-v4-${{ hashFiles('**/pyproject.toml') }}