Skip to content

Commit

Permalink
SQSCANGHA-30 Replace secrets.SONAR_HOST with actual value
Browse files Browse the repository at this point in the history
  • Loading branch information
csaba-feher-sonarsource committed May 23, 2024
1 parent 44de84c commit a860205
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
uses: sonarsource/[email protected]
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
SONAR_HOST_URL: <Sonar host URL value>
```
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:
Expand All @@ -64,7 +64,7 @@ If your source code file names contain special characters that are not covered b
uses: sonarsource/[email protected]
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
SONAR_HOST_URL: <Sonar host URL value>
LC_ALL: "ru_RU.UTF-8"
```

Expand All @@ -75,7 +75,7 @@ If your SonarQube server uses a self-signed certificate, you can pass a root cer
uses: sonarsource/[email protected]
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
SONAR_HOST_URL: <Sonar host URL value>
SONAR_ROOT_CERT: ${{ secrets.SONAR_ROOT_CERT }}
```

Expand Down

0 comments on commit a860205

Please sign in to comment.