From f05f0785f216369d48127bd37f54b383405e9db7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Mar 2022 19:09:46 +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) - [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/cibuildwheel.yml | 2 +- .github/workflows/tests.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index ef1f15a21939..c53ea183f246 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -39,7 +39,7 @@ jobs: with: python-version: '3.7' - - uses: actions/cache@v2 + - uses: actions/cache@v3 id: numpy-cache with: path: numpy-aarch64-cache/ diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 01fb18e06579..0d0a408d306f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -102,7 +102,7 @@ jobs: esac - name: Cache pip - uses: actions/cache@v2 + uses: actions/cache@v3 if: startsWith(runner.os, 'Linux') with: path: ~/.cache/pip @@ -110,7 +110,7 @@ jobs: restore-keys: | ${{ runner.os }}-py${{ matrix.python-version }}-pip- - name: Cache pip - uses: actions/cache@v2 + uses: actions/cache@v3 if: startsWith(runner.os, 'macOS') with: path: ~/Library/Caches/pip @@ -118,7 +118,7 @@ jobs: restore-keys: | ${{ runner.os }}-py${{ matrix.python-version }}-pip- - name: Cache ccache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.ccache @@ -126,7 +126,7 @@ jobs: restore-keys: | ${{ runner.os }}-py${{ matrix.python-version }}-ccache- - name: Cache Matplotlib - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.cache/matplotlib