From bccd4e77a5453620a658b968678a7746e88e09eb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 02:05:46 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .github/workflows/sonar-check-quality.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sonar-check-quality.yml b/.github/workflows/sonar-check-quality.yml index d98a161..de68ff5 100644 --- a/.github/workflows/sonar-check-quality.yml +++ b/.github/workflows/sonar-check-quality.yml @@ -24,14 +24,14 @@ jobs: java-version: 11 - name: Cache SonarQube 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') }}