From fa5d6db1d6b0b483b1bcb00abb517ea6b8e89774 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 03:46:04 +0000 Subject: [PATCH] chore(actions): update actions/cache action to v4 --- .github/workflows/docs.yaml | 2 +- .github/workflows/pull-request.yaml | 6 +++--- .github/workflows/release.yaml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 3ec4ca95..b3688f18 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -69,7 +69,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.yaml b/.github/workflows/pull-request.yaml index 6cb41148..69884bdd 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -38,7 +38,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') }} @@ -85,7 +85,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') }} @@ -113,7 +113,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.yaml b/.github/workflows/release.yaml index 7ca657ec..f02eb62b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -22,7 +22,7 @@ jobs: with: python-version: "3.12" - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Cache pip dependencies with: path: ~/.cache/pip @@ -70,7 +70,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Cache pip dependencies with: path: ~/.cache/pip