This is an automated email from the ASF dual-hosted git repository.
nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git
The following commit(s) were added to refs/heads/master by this push:
new e46fc56f2 .github/workflows/sonar.yml: Update from sonar.login to
sonar.token
e46fc56f2 is described below
commit e46fc56f2ecd067c5fd2d4062128b7f0c9149d7c
Author: Shad Storhaug <[email protected]>
AuthorDate: Thu Oct 19 15:51:33 2023 +0700
.github/workflows/sonar.yml: Update from sonar.login to sonar.token
---
.github/workflows/sonar.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml
index a110df5ff..77489757d 100644
--- a/.github/workflows/sonar.yml
+++ b/.github/workflows/sonar.yml
@@ -72,6 +72,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR
information, if any
shell: powershell
run: |
- .\.sonar\scanner\dotnet-sonarscanner begin /k:"apache_lucenenet"
/o:"apache" /d:sonar.login="${{ secrets.SONARCLOUD_TOKEN }}"
/d:sonar.host.url="https://sonarcloud.io"
+ .\.sonar\scanner\dotnet-sonarscanner begin /k:"apache_lucenenet"
/o:"apache" /d:sonar.token="${{ secrets.SONARCLOUD_TOKEN }}"
/d:sonar.host.url="https://sonarcloud.io"
dotnet build
- .\.sonar\scanner\dotnet-sonarscanner end /d:sonar.login="${{
secrets.SONARCLOUD_TOKEN }}"
+ .\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="${{
secrets.SONARCLOUD_TOKEN }}"