From 9a93c7beb5c6db6bc0b0c44f4eecf812929a6762 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" Date: Thu, 11 Dec 2025 21:51:07 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 (#55) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/cache](https://github.com/actions/cache) | action | major | `v4` -> `v5` | --- ### Release Notes
actions/cache (actions/cache) ### [`v5`](https://github.com/actions/cache/compare/v4...v5) [Compare Source](https://github.com/actions/cache/compare/v4...v5)
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://git.tainton.uk/actions/gha-workflows/pulls/55 Co-authored-by: renovate[bot] Co-committed-by: renovate[bot] --- .gitea/workflows/ci-python-poetry-with-docker.yml | 2 +- .gitea/workflows/ci-python-poetry.yml | 2 +- .gitea/workflows/ci-python-uv-with-docker.yml | 2 +- .gitea/workflows/ci-python-with-docker.yml | 2 +- .gitea/workflows/ci-python.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci-python-poetry-with-docker.yml b/.gitea/workflows/ci-python-poetry-with-docker.yml index c03dfb5..6c982ff 100644 --- a/.gitea/workflows/ci-python-poetry-with-docker.yml +++ b/.gitea/workflows/ci-python-poetry-with-docker.yml @@ -44,7 +44,7 @@ jobs: poetry config virtualenvs.create true --local poetry config virtualenvs.in-project true --local - - uses: actions/cache@v4 + - uses: actions/cache@v5 name: Define cache for dependencies with: path: ./.venv diff --git a/.gitea/workflows/ci-python-poetry.yml b/.gitea/workflows/ci-python-poetry.yml index 12195fb..9f2a9b8 100644 --- a/.gitea/workflows/ci-python-poetry.yml +++ b/.gitea/workflows/ci-python-poetry.yml @@ -37,7 +37,7 @@ jobs: poetry config virtualenvs.create true --local poetry config virtualenvs.in-project true --local - - uses: actions/cache@v4 + - uses: actions/cache@v5 name: Define cache for dependencies with: path: ./.venv diff --git a/.gitea/workflows/ci-python-uv-with-docker.yml b/.gitea/workflows/ci-python-uv-with-docker.yml index d3459fc..34baba1 100644 --- a/.gitea/workflows/ci-python-uv-with-docker.yml +++ b/.gitea/workflows/ci-python-uv-with-docker.yml @@ -37,7 +37,7 @@ jobs: python-version: "${{ vars.PYTHON_VERSION }}" - name: uv cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/.uv-cache key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }} diff --git a/.gitea/workflows/ci-python-with-docker.yml b/.gitea/workflows/ci-python-with-docker.yml index d019597..a95ab9e 100644 --- a/.gitea/workflows/ci-python-with-docker.yml +++ b/.gitea/workflows/ci-python-with-docker.yml @@ -36,7 +36,7 @@ jobs: - name: Update Pip run: pip install -U pip - - uses: actions/cache@v4 + - uses: actions/cache@v5 name: Define cache for dependencies with: path: . diff --git a/.gitea/workflows/ci-python.yml b/.gitea/workflows/ci-python.yml index bf28f4f..3c05c64 100644 --- a/.gitea/workflows/ci-python.yml +++ b/.gitea/workflows/ci-python.yml @@ -29,7 +29,7 @@ jobs: - name: Update Pip run: pip install -U pip - - uses: actions/cache@v4 + - uses: actions/cache@v5 name: Define cache for dependencies with: path: .