We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eed767b commit 5da9189Copy full SHA for 5da9189
.github/workflows/sonarqube.yml
@@ -13,10 +13,14 @@ jobs:
13
- uses: actions/checkout@v4
14
with:
15
fetch-depth: 0
16
- - uses: sonarsource/sonarqube-scan-action@v5
+ - uses: sonarsource/sonarqube-scan-action@v6
17
env:
18
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
19
- SONAR_HOST_URL: https://sonarcloud.io
+ SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
20
+ SONAR_SCANNER_OPTS: "-Dsonar.scanner.skipJreProvisioning=true"
21
+ with:
22
+ args: >
23
+ -Dsonar.scanner.verifySSL=false
24
# If you wish to fail your job when the Quality Gate is red, uncomment the
25
# following lines. This would typically be used to fail a deployment.
26
# We do not recommend to use this in a pull request. Prefer using pull request
0 commit comments