From 5f8fef513b66542feddc8dd013ab2720f357a89f Mon Sep 17 00:00:00 2001 From: Miha Kralj Date: Sun, 7 Dec 2025 18:45:45 -0800 Subject: [PATCH] chore: Remove SonarCloud scanner caching from Publish.yml; update Qodana linter version in qodana.yaml --- .github/workflows/Publish.yml | 8 -------- qodana.yaml | 3 --- 2 files changed, 11 deletions(-) diff --git a/.github/workflows/Publish.yml b/.github/workflows/Publish.yml index f55d29c3..d3defce0 100644 --- a/.github/workflows/Publish.yml +++ b/.github/workflows/Publish.yml @@ -63,14 +63,6 @@ jobs: java-version: 17 distribution: 'zulu' - - name: Cache SonarCloud scanner - id: cache-sonar-scanner - uses: actions/cache@v4 - with: - path: .\.sonar\scanner - key: ${{ runner.os }}-sonar-scanner - restore-keys: ${{ runner.os }}-sonar-scanner - - name: Install dotnet tools run: | dotnet tool install JetBrains.dotCover.GlobalTool --global diff --git a/qodana.yaml b/qodana.yaml index 7366225f..a91001d3 100644 --- a/qodana.yaml +++ b/qodana.yaml @@ -91,6 +91,3 @@ exclude: #Specify Qodana linter for analysis (Applied in CI/CD pipeline) linter: jetbrains/qodana-dotnet:2024.3 - -# Use native mode instead of Docker (avoids Unix socket issues on Windows) -withinDocker: false