From cc9b5a163410371431419647d6b7ab904cb26f17 Mon Sep 17 00:00:00 2001 From: Simon Marquis Date: Thu, 22 Jun 2023 20:13:57 +0200 Subject: [PATCH] Remove SARIF support --- .github/workflows/Build.yaml | 6 ------ .../src/main/kotlin/AndroidLintConventionPlugin.kt | 1 - 2 files changed, 7 deletions(-) diff --git a/.github/workflows/Build.yaml b/.github/workflows/Build.yaml index 8810747d6..10df770bf 100644 --- a/.github/workflows/Build.yaml +++ b/.github/workflows/Build.yaml @@ -66,12 +66,6 @@ jobs: name: lint-reports path: '**/build/reports/lint-results-*.html' - - name: Upload lint reports (SARIF) - if: always() - uses: github/codeql-action/upload-sarif@v2 - with: - sarif_file: './' - androidTest: needs: build runs-on: macOS-latest # enables hardware acceleration in the virtual machine diff --git a/build-logic/convention/src/main/kotlin/AndroidLintConventionPlugin.kt b/build-logic/convention/src/main/kotlin/AndroidLintConventionPlugin.kt index 68ca58b2a..1734df930 100644 --- a/build-logic/convention/src/main/kotlin/AndroidLintConventionPlugin.kt +++ b/build-logic/convention/src/main/kotlin/AndroidLintConventionPlugin.kt @@ -42,6 +42,5 @@ class AndroidLintConventionPlugin : Plugin { private fun Lint.configure() { xmlReport = true - sarifReport = true checkDependencies = true }