Skip to content

Commit 95c1010

Browse files
authored
Merge pull request #164 from atc-net/feature/sonarcloud.token
sonar.login is deprecated - switching to sonar.token
2 parents 4ec338b + 32cb448 commit 95c1010

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/post-integration.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ jobs:
6262
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
6363
shell: pwsh
6464
run: |
65-
dotnet sonarscanner begin /k:"atc-coding-rules-updater" /o:"atc-net" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
65+
dotnet sonarscanner begin /k:"atc-coding-rules-updater" /o:"atc-net" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
6666
dotnet build -c Release /p:UseSourceLink=true --no-restore
67-
dotnet sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"
67+
dotnet sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"
6868
6969
- name: ⏩ Merge to stable-branch
7070
run: |

0 commit comments

Comments
 (0)