From 5758fdfff783a679e541ac2d611038f2f0c163a7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 17:54:31 +0000 Subject: [PATCH] Update actions/cache action to v4 --- .github/workflows/sonar-analytics.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sonar-analytics.yml b/.github/workflows/sonar-analytics.yml index ac18dccab..a217f5a7d 100644 --- a/.github/workflows/sonar-analytics.yml +++ b/.github/workflows/sonar-analytics.yml @@ -19,13 +19,13 @@ jobs: distribution: 'temurin' java-version: '17' - 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 Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}