From b1476aee4fe21131899c1f43b2e06e25971b3ebe Mon Sep 17 00:00:00 2001 From: Shad Storhaug Date: Sat, 10 Feb 2024 14:36:25 +0700 Subject: [PATCH] .github/workflows/sonar.yml: Updated to use latest .NET 8 SDK --- .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 3e385e6e7f..47d6e048bc 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -45,10 +45,10 @@ jobs: echo "DOTNET_NOLOGO=1" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append echo "DOTNET_CLI_TELEMETRY_OPTOUT=1" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append shell: pwsh - - name: Setup .NET 7 SDK + - name: Setup .NET 8 SDK uses: actions/setup-dotnet@v3 with: - dotnet-version: '7.0.x' + dotnet-version: '8.0.x' - name: Set up JDK 21 uses: actions/setup-java@v3 with: