From 63812f5c6500d17dcd31cd27e300ea08843efaa1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 23 Jun 2023 19:51:30 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [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/v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 4ce87d904..c7228af1d 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -43,7 +43,7 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ~/.cache/pip # ubuntu location key: ${{ runner.os }}-pip-${{ hashFiles('requirements-dev.txt') }} @@ -123,7 +123,7 @@ jobs: - uses: actions/checkout@v3 - name: Cache conda - uses: actions/cache@v2 + uses: actions/cache@v3 env: # Increase this value to reset cache if etc/environment.yml has not changed CACHE_NUMBER: 1 @@ -133,7 +133,7 @@ jobs: id: cache - name: Cache pip - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ matrix.pip-cache }} key: ${{ runner.os }}-pip-${{ hashFiles('requirements-dev.txt') }}