From 8ae608ba2c9b1722a3a952e40190e705d76f148e Mon Sep 17 00:00:00 2001 From: Bastien DUMONT Date: Fri, 13 Jun 2025 23:43:40 +0200 Subject: [PATCH] Fix sonarqube action --- .github/workflows/actions.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 65e91c0..b0a7543 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -90,17 +90,16 @@ jobs: - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v2 - sonarcloud: - name: SonarCloud + sonarqube: + name: SonarQube runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - - name: SonarCloud Scan - uses: SonarSource/sonarcloud-github-action@master + - name: SonarQube Scan + uses: SonarSource/sonarqube-scan-action@v5 env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} build: