diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index 39b9c46d61a4..982049ea7961 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -55,7 +55,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 3f2cb2bd7fef..4e8cd69a5332 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -116,7 +116,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 @@ -124,7 +124,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 @@ -132,7 +132,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 @@ -140,7 +140,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