From 888d9354654ca336f6590b1e3d066baeb40e0c8b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 18:28:15 +0000 Subject: [PATCH] Update actions/cache action to v6 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index feae5c85..002ddb22 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -83,14 +83,14 @@ jobs: sudo apt-get update -q && sudo apt-get install -y microsoft-edge-beta - name: Cache SonarCloud packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar - name: Cache Maven packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}