Skip to content

Commit 47355b2

Browse files
authored
Fix dependabot SONAR_TOKEN (#1517)
# Description @swift-nav/algint-team Use `SONAR_TOKEN` as that is set up as Dependabot secret in this repo. # API compatibility Does this change introduce a API compatibility risk? No ## API compatibility plan If the above is "Yes", please detail the compatibility (or migration) plan: <!-- Provide a short explanation plan here --> # JIRA Reference None
1 parent 775d728 commit 47355b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/sonarcloud.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: sonarsource/sonarqube-scan-action@v5.3.1
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_AUTO }}
20+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
2121
with:
2222
args: >
2323
-Dsonar.organization=swift-nav
@@ -51,7 +51,7 @@ jobs:
5151
uses: SonarSource/sonarqube-scan-action@v5.3.1
5252
env:
5353
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_C }}
54+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
5555
with:
5656
args: >
5757
-Dsonar.organization=swift-nav

0 commit comments

Comments
 (0)