From a860205a86f2069cd7335517cac5c856c8829988 Mon Sep 17 00:00:00 2001 From: Csaba Feher Date: Thu, 23 May 2024 11:29:14 +0200 Subject: [PATCH] SQSCANGHA-30 Replace secrets.SONAR_HOST with actual value --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e3b9ebb..1539f2d 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ jobs: uses: sonarsource/sonarqube-scan-action@v2.0.2 env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} + SONAR_HOST_URL: ``` If your source code file names contain special characters that are not covered by the locale range of `en_US.UTF-8`, you can configure your desired locale like this: @@ -64,7 +64,7 @@ If your source code file names contain special characters that are not covered b uses: sonarsource/sonarqube-scan-action@v2.0.2 env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} + SONAR_HOST_URL: LC_ALL: "ru_RU.UTF-8" ``` @@ -75,7 +75,7 @@ If your SonarQube server uses a self-signed certificate, you can pass a root cer uses: sonarsource/sonarqube-scan-action@v2.0.2 env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} + SONAR_HOST_URL: SONAR_ROOT_CERT: ${{ secrets.SONAR_ROOT_CERT }} ```