From 6466686f016e040aa3a42423c3ad4ea28d169efd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 02:08:22 +0000 Subject: [PATCH] chore(actions): update actions/cache action to v4 --- .github/workflows/docs.yaml | 2 +- .github/workflows/pull_request.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index b91b3972..d0d01885 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -71,7 +71,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 b91695e1..5377a9d6 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -24,7 +24,7 @@ jobs: - name: Cache pip id: cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} @@ -58,7 +58,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('requirements-docs.txt') }}