From cdfc17ac7c01a66a2f3bbf6641112149b1d83d90 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 02:26:18 +0000 Subject: [PATCH] chore(actions): update actions/cache action to v4 --- .github/workflows/docs.yaml | 2 +- .github/workflows/pull-request.yml | 4 ++-- .github/workflows/release-deprecated.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/tests.yml | 20 ++++++++++---------- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index e4dcd87c9..7ee67c8e0 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -70,7 +70,7 @@ jobs: - name: Cache pip dependencies id: cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }} diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 4a10744fe..51bd336ff 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -41,7 +41,7 @@ jobs: with: python-version: "3.10" - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Cache pip dependencies with: path: ~/.cache/pip @@ -95,7 +95,7 @@ jobs: - name: Cache pip dependencies id: cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }} diff --git a/.github/workflows/release-deprecated.yml b/.github/workflows/release-deprecated.yml index 70083b9bc..f6fe44e03 100644 --- a/.github/workflows/release-deprecated.yml +++ b/.github/workflows/release-deprecated.yml @@ -23,7 +23,7 @@ jobs: with: python-version: "3.8" - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Cache pip dependencies with: path: ~/.cache/pip diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 889d8b6bd..a19736c1e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: with: python-version: "3.10" - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Cache pip dependencies with: path: ~/.cache/pip diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 590552b9e..5655be5a0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -58,21 +58,21 @@ jobs: python-version: ${{ matrix.python-version }} architecture: x64 - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: startsWith(runner.os, 'Linux') with: path: ~/.cache/pip key: ${{ runner.os }}-${{ matrix.pandas }}-pip-${{ hashFiles('**/requirements.txt') }} restore-keys: | ${{ runner.os }}-${{ matrix.pandas }}-pip- - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: startsWith(runner.os, 'macOS') with: path: ~/Library/Caches/pip key: ${{ runner.os }}-${{ matrix.pandas }}-pip-${{ hashFiles('**/requirements.txt') }} restore-keys: | ${{ runner.os }}-${{ matrix.pandas }}-pip- - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: startsWith(runner.os, 'Windows') with: path: ~\AppData\Local\pip\Cache @@ -106,21 +106,21 @@ jobs: python-version: ${{ matrix.python-version }} architecture: x64 - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: startsWith(runner.os, 'Linux') with: path: ~/.cache/pip key: ${{ runner.os }}-${{ matrix.pandas }}-pip-${{ hashFiles('**/requirements.txt') }} restore-keys: | ${{ runner.os }}-${{ matrix.pandas }}-pip- - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: startsWith(runner.os, 'macOS') with: path: ~/Library/Caches/pip key: ${{ runner.os }}-${{ matrix.pandas }}-pip-${{ hashFiles('**/requirements.txt') }} restore-keys: | ${{ runner.os }}-${{ matrix.pandas }}-pip- - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: startsWith(runner.os, 'Windows') with: path: ~\AppData\Local\pip\Cache @@ -135,7 +135,7 @@ jobs: - run: make test_cov - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: startsWith(runner.os, 'Windows') with: path: ~\AppData\Local\pip\Cache @@ -189,21 +189,21 @@ jobs: with: python-version: ${{ matrix.python-version }} architecture: x64 - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: startsWith(runner.os, 'Linux') with: path: ~/.cache/pip key: ${{ runner.os }}-${{ matrix.pandas }}-pip-${{ hashFiles('**/requirements.txt') }} restore-keys: | ${{ runner.os }}-${{ matrix.pandas }}-pip-\ - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: startsWith(runner.os, 'macOS') with: path: ~/Library/Caches/pip key: ${{ runner.os }}-${{ matrix.pandas }}-pip-${{ hashFiles('**/requirements.txt') }} restore-keys: | ${{ runner.os }}-${{ matrix.pandas }}-pip- - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: startsWith(runner.os, 'Windows') with: path: ~\AppData\Local\pip\Cache