From 604a04f1d69fdbab78d9aaf066f64985b65b740b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 28 Jul 2025 11:48:28 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .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..fd97ea8 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@v4 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@v4 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar - name: Cache Gradle packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}