From cb3706c57a6168970f27871277d031d138ce4e0f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 08:50:35 +0100 Subject: [PATCH] Bump actions/cache from 3 to 4 (#1968) 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/ci-tests.yml | 6 +++--- .github/workflows/quay-publish.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 04cc9b0b5..cf5138672 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -71,7 +71,7 @@ jobs: - name: MyPy cache if: ${{ matrix.step == 'mypy' }} - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .mypy_cache/${{ env.py-semver }} key: mypy-${{ env.py-semver }} @@ -184,7 +184,7 @@ jobs: - name: Singularity cache if: ${{ matrix.container == 'singularity' }} - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: sifcache key: singularity @@ -285,7 +285,7 @@ jobs: pip install "tox<4" "tox-gh-actions<3" # # docker for mac install is not currently stable # - name: 'SETUP MacOS: load Homebrew cache' - # uses: actions/cache@v3 + # uses: actions/cache@v4 # if: runner.os == 'macOS' # with: # path: | diff --git a/.github/workflows/quay-publish.yml b/.github/workflows/quay-publish.yml index 808f2e8b4..8e248fbe3 100644 --- a/.github/workflows/quay-publish.yml +++ b/.github/workflows/quay-publish.yml @@ -25,7 +25,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Cache Docker layers - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-multi-buildx-${{ github.sha }}