From cdc17a5011b90fea0c3c1b0ca4042a5054bedc67 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Apr 2022 11:12:47 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3.0.1 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1. - [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.0.1) --- 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 6bd35f22567d..23189cf3556e 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -40,7 +40,7 @@ jobs: with: python-version: '3.7' - - uses: actions/cache@v2 + - uses: actions/cache@v3.0.1 id: numpy-cache with: path: numpy-aarch64-cache/ diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 350dc3db1226..3fed82d99782 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -113,7 +113,7 @@ jobs: esac - name: Cache pip - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 if: startsWith(runner.os, 'Linux') with: path: ~/.cache/pip @@ -121,7 +121,7 @@ jobs: restore-keys: | ${{ matrix.os }}-py${{ matrix.python-version }}-pip- - name: Cache pip - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 if: startsWith(runner.os, 'macOS') with: path: ~/Library/Caches/pip @@ -129,7 +129,7 @@ jobs: restore-keys: | ${{ matrix.os }}-py${{ matrix.python-version }}-pip- - name: Cache ccache - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: | ~/.ccache @@ -137,7 +137,7 @@ jobs: restore-keys: | ${{ matrix.os }}-py${{ matrix.python-version }}-ccache- - name: Cache Matplotlib - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: | ~/.cache/matplotlib