diff --git a/.github/workflows/build_offline_docs.yml b/.github/workflows/build_offline_docs.yml index 14b0a3b56..905a13780 100644 --- a/.github/workflows/build_offline_docs.yml +++ b/.github/workflows/build_offline_docs.yml @@ -34,7 +34,7 @@ jobs: echo "PYTHON_VERSION=$(python --version)" >> $GITHUB_OUTPUT - name: Restore cached virtualenv - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: key: venv-${{ runner.os }}-${{ steps.pythonv.outputs.PYTHON_VERSION }}-${{ hashFiles('requirements.txt') }} path: .venv @@ -50,7 +50,7 @@ jobs: sudo apt install parallel libwebp7 imagemagick - name: Save virtualenv cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: key: venv-${{ runner.os }}-${{ steps.pythonv.outputs.PYTHON_VERSION }}-${{ hashFiles('requirements.txt') }} path: .venv diff --git a/.github/workflows/check_urls.yml b/.github/workflows/check_urls.yml index 7359b526e..7e1420687 100644 --- a/.github/workflows/check_urls.yml +++ b/.github/workflows/check_urls.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v5 - name: Restore lychee cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .lycheecache key: cache-lychee-${{ github.sha }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56d772aab..9f9ce5c5f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: echo "PYTHON_VERSION=$(python --version)" >> $GITHUB_OUTPUT - name: Restore cached virtualenv - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: key: venv-${{ runner.os }}-${{ steps.pythonv.outputs.PYTHON_VERSION }}-${{ hashFiles('requirements.txt') }} path: .venv @@ -43,7 +43,7 @@ jobs: echo "VIRTUAL_ENV=$VIRTUAL_ENV" >> $GITHUB_ENV - name: Save virtualenv cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: key: venv-${{ runner.os }}-${{ steps.pythonv.outputs.PYTHON_VERSION }}-${{ hashFiles('requirements.txt') }} path: .venv