From d8badf714bbcf300ab78eb27edb8ae46b61f2695 Mon Sep 17 00:00:00 2001 From: pasqualespica <36746022+pasqualespica@users.noreply.github.com> Date: Thu, 31 Aug 2023 15:20:01 +0200 Subject: [PATCH] fix#5 --- .github/maven_code_review/action.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/maven_code_review/action.yml b/.github/maven_code_review/action.yml index 9021d7e5..f63c2a73 100644 --- a/.github/maven_code_review/action.yml +++ b/.github/maven_code_review/action.yml @@ -59,19 +59,19 @@ runs: with: maven-version: ${{ inputs.maven_version }} - - name: Cache Maven packages - uses: actions/cache@v1 - with: - path: ~/.m2 - key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} - restore-keys: ${{ runner.os }}-m2 + # - name: Cache Maven packages + # uses: actions/cache@v1 + # with: + # path: ~/.m2 + # key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} + # restore-keys: ${{ runner.os }}-m2 - - name: Cache SonarCloud packages - uses: actions/cache@v1 - with: - path: ~/.sonar-project.properties/cache - key: ${{ runner.os }}-sonar-project.properties - restore-keys: ${{ runner.os }}-sonar-project.properties + # - name: Cache SonarCloud packages + # uses: actions/cache@v1 + # with: + # path: ~/.sonar-project.properties/cache + # key: ${{ runner.os }}-sonar-project.properties + # restore-keys: ${{ runner.os }}-sonar-project.properties - name: Build and analyze on Pull Requests if: ${{ github.event_name == 'pull_request' }}