Skip to content

Commit a8d657e

Browse files
committed
clear mavan cache for corrupted file
1 parent b933ef1 commit a8d657e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/quality-checks.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,9 @@ jobs:
328328

329329
- name: Run SonarQube analysis
330330
if: ${{ steps.check_languages.outputs.uses_java == 'true' && env.SONAR_TOKEN_EXISTS == 'true' }}
331-
run: mvn sonar:sonar -Dsonar.login=${{ secrets.SONAR_TOKEN }}
331+
run: |
332+
rm -rf ~/.m2
333+
mvn sonar:sonar -Dsonar.login=${{ secrets.SONAR_TOKEN }}
332334
333335
- name: SonarCloud Scan
334336
uses: SonarSource/sonarqube-scan-action@a31c9398be7ace6bbfaf30c0bd5d415f843d45e9

0 commit comments

Comments
 (0)