diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index 1c4076d6bb3a..f0792ed9cc8e 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.0.11 id: numpy-cache with: path: numpy-aarch64-cache/ diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 84c73e3e3289..bfaaae24a615 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -105,7 +105,7 @@ jobs: esac - name: Cache pip - uses: actions/cache@v2 + uses: actions/cache@v3.0.11 if: startsWith(runner.os, 'Linux') with: path: ~/.cache/pip @@ -113,7 +113,7 @@ jobs: restore-keys: | ${{ matrix.os }}-py${{ matrix.python-version }}-pip- - name: Cache pip - uses: actions/cache@v2 + uses: actions/cache@v3.0.11 if: startsWith(runner.os, 'macOS') with: path: ~/Library/Caches/pip @@ -121,7 +121,7 @@ jobs: restore-keys: | ${{ matrix.os }}-py${{ matrix.python-version }}-pip- - name: Cache ccache - uses: actions/cache@v2 + uses: actions/cache@v3.0.11 with: path: | ~/.ccache @@ -129,7 +129,7 @@ jobs: restore-keys: | ${{ matrix.os }}-py${{ matrix.python-version }}-ccache- - name: Cache Matplotlib - uses: actions/cache@v2 + uses: actions/cache@v3.0.11 with: path: | ~/.cache/matplotlib