From ae063ef0aa5ee2fcabb06b64c32c8b63b37955b3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 28 Nov 2024 17:12:48 +0000 Subject: [PATCH] Update actions/cache action to v4 (#104) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/codeanalysis.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeanalysis.yaml b/.github/workflows/codeanalysis.yaml index 0ad70c8..0d8c7d7 100644 --- a/.github/workflows/codeanalysis.yaml +++ b/.github/workflows/codeanalysis.yaml @@ -20,13 +20,13 @@ jobs: - name: Build with Maven security checking... run: mvn -q clean install -Psecurity-scans -Denv.DEVOPS_FRAMEWORK_UNITTESTS=true -DskipTests=true - 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') }}