From 32b6a7287298453312bc3fad410c2a919c7b0e64 Mon Sep 17 00:00:00 2001 From: rostislav Date: Tue, 28 May 2024 01:51:23 +0300 Subject: [PATCH] sonarqube upd --- .github/workflows/build.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 09ec95228610c..0af54c734b37c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,11 +15,6 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - - name: Set up SonarQube scanner - run: | - wget -qO- https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-4.6.2.2472-linux.zip | sudo unzip -d /opt/ - export PATH=/opt/sonar-scanner-4.6.2.2472-linux/bin:$PATH - - name: Identify modified files id: modified_files run: | @@ -28,6 +23,7 @@ jobs: echo "::set-output name=files::$MODIFIED_FILES" - name: Run SonarQube analysis + uses: sonarsource/sonarqube-scan-action@master env: SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} SONAR_LOGIN: ${{ secrets.SONARQUBE_TOKEN }}