From 6f6abe001f8dab9ba9ea11af8da0ee17ed8438be Mon Sep 17 00:00:00 2001 From: Shad Storhaug Date: Thu, 19 Oct 2023 15:22:09 +0700 Subject: [PATCH] .github/workflows/sonar.yml: Use latest version of the scanner --- .github/workflows/sonar.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 8dcbb3ac98..a110df5ff0 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -66,7 +66,7 @@ jobs: $dir = '.\.sonar\scanner' if (!(Test-Path $dir)) { New-Item -Path $dir -ItemType Directory } # NOTE: Using 5.8.0 when the sonar scan was first added because that is likely the version that was in the cache - dotnet tool update dotnet-sonarscanner --tool-path $dir --version 5.8.0 + dotnet tool update dotnet-sonarscanner --tool-path $dir #--version 5.8.0 - name: Build and analyze env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any