From cde6b0fe94ff6fdfca902ac11073dc1a57581fc6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Mar 2024 10:09:03 -0300 Subject: [PATCH] Bump actions/cache from 2 to 4 (#75) --- .github/workflows/docs.yml | 4 ++-- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e276ae9b..03abbeac 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -82,7 +82,7 @@ jobs: echo "::set-output name=dir::$(pip cache dir)" - name: Setup caching for pip packages - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('requirements-full.txt') }} @@ -104,7 +104,7 @@ jobs: run: python -m pip install --no-deps dist/*.whl - name: Cache the Ensaio datasets - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ${{ runner.temp }}/cache/ensaio # Use a constant key to reuse the datasets across all jobs diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a2b1e604..12b0892f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -109,7 +109,7 @@ jobs: echo "::set-output name=dir::$(pip cache dir)" - name: Setup caching for pip packages - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('requirements-full.txt') }}