From 0f6c86d1bd6b5a0b5b99a2fce8f98ac48a5b3dfd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 17:40:45 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v6 --- .github/workflows/master.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 35adb39..dbff88c 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -25,7 +25,7 @@ jobs: distribution: 'temurin' java-version: 11 - name: Cache Gradle - uses: actions/cache@v3 + uses: actions/cache@v6 env: java-version: 11 with: @@ -52,13 +52,13 @@ jobs: distribution: 'temurin' java-version: 11 - name: Cache SonarCloud packages - uses: actions/cache@v3 + uses: actions/cache@v6 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar - name: Cache Gradle packages - uses: actions/cache@v3 + uses: actions/cache@v6 with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}