From abce4a802e27e875af3937d7b45a93408420cfc7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 17:31:43 +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') }}