We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6813df commit e510418Copy full SHA for e510418
.github/workflows/python-app.yml
@@ -45,7 +45,13 @@ jobs:
45
- uses: actions/checkout@v4
46
with:
47
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
48
- - uses: sonarsource/sonarqube-scan-action@master
+ - uses: SonarSource/sonarqube-scan-action@v4
49
env:
50
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
51
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
52
+ # If you wish to fail your job when the Quality Gate is red, uncomment the
53
+ # following lines. This would typically be used to fail a deployment.
54
+ # - uses: SonarSource/sonarqube-quality-gate-action@v1
55
+ # timeout-minutes: 5
56
+ # env:
57
+ # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
0 commit comments