From d866d8ebbab13e4f58ae201585bc55b079b47c2d Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 26 Jun 2026 20:54:12 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v6 (#9) 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 | Pending | |---|---|---|---|---| | [actions/cache](https://github.com/actions/cache) | action | major | `v5` → `v6` | `v6.1.0` | --- ### Release Notes
actions/cache (actions/cache) ### [`v6.0.0`](https://github.com/actions/cache/releases/tag/v6.0.0) [Compare Source](https://github.com/actions/cache/compare/v6.0.0...v6.0.0) ##### What's Changed - Update packages, migrate to ESM by [@​Samirat](https://github.com/Samirat) in [#​1760](https://github.com/actions/cache/pull/1760) **Full Changelog**: ### [`v6`](https://github.com/actions/cache/compare/v5.0.5...v6.0.0) [Compare Source](https://github.com/actions/cache/compare/v5.0.5...v6.0.0)
--- ### Configuration 📅 **Schedule**: (UTC) - 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 becomes conflicted, 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 [Mend Renovate](https://github.com/renovatebot/renovate). Reviewed-on: https://gitea.unbound.se/shiny/logging/pulls/9 Co-authored-by: Renovate Bot Co-committed-by: Renovate Bot --- .gitea/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 7a38dc9..29a6a0c 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -33,7 +33,7 @@ jobs: go install github.com/vladopajic/go-test-coverage/v2@latest go-test-coverage --config ./.testcoverage.yml --github-action-output - name: Restore baseline coverage - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: coverage-baseline.txt key: coverage-baseline-${{ gitea.run_id }} @@ -88,7 +88,7 @@ jobs: - name: Write baseline file run: echo "${{ steps.coverage.outputs.total-coverage }}" > coverage-baseline.txt - name: Save baseline to cache - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: coverage-baseline.txt key: coverage-baseline-${{ gitea.run_id }}