From 921f5855984401ad50c4f1673eac9b922222f137 Mon Sep 17 00:00:00 2001 From: Renovate Date: Thu, 26 Sep 2024 05:25:14 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 (!19) 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 | `v1` -> `v4` | --- ### Release Notes
actions/cache (actions/cache) ### [`v4`](https://github.com/actions/cache/compare/v3...v4) [Compare Source](https://github.com/actions/cache/compare/v3...v4) ### [`v3`](https://github.com/actions/cache/compare/v2...v3) [Compare Source](https://github.com/actions/cache/compare/v2...v3) ### [`v2`](https://github.com/actions/cache/compare/v1...v2) [Compare Source](https://github.com/actions/cache/compare/v1...v2)
--- ### 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.kjan.de/jank/LF8/pulls/19 Reviewed-by: Jan Gleytenhoover Co-authored-by: Renovate Co-committed-by: Renovate --- .gitea/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 4321e8d..5e9e1cf 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -19,13 +19,13 @@ jobs: with: java-version: 21 - name: Cache SonarQube packages - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar - name: Cache Gradle packages - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}