From 3e9c2cf2be487f060a9d2cbfaf962f9b505eb0f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Brun?= Date: Sat, 20 Apr 2024 19:41:45 +0200 Subject: [PATCH] ci: remove Sonarcloud actions --- .github/workflows/maven.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 289d434..ea47b72 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -17,12 +17,6 @@ jobs: java-version: 17 # Java distribution. See the list of supported distributions in README file distribution: temurin - - name: Cache SonarCloud packages - uses: actions/cache@v1 - with: - path: ~/.sonar/cache - key: ${{ runner.os }}-sonar - restore-keys: ${{ runner.os }}-sonar - name: Cache Maven packages uses: actions/cache@v1 with: @@ -35,7 +29,7 @@ jobs: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_PROJECTKEY: ${{ secrets.SONAR_PROJECTKEY }} SONAR_ORGANIZATION: ${{ secrets.SONAR_ORGANIZATION }} - run: mvn -B -ntp verify jacoco:report --file pom.xml org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=$SONAR_PROJECTKEY -Dsonar.organization=$SONAR_ORGANIZATION -Dsonar.host.url=https://sonarcloud.io + run: mvn -B -ntp verify jacoco:report --file pom.xml - run: mkdir staging && cp target/*.jar staging - uses: actions/upload-artifact@v1 with: