Merge pull request #921 from SimonMarquis/sarif

Enable SARIF support on GitHub Actions
pull/1837/head
Don Turner 9 months ago committed by GitHub
commit 921b51c372

@ -160,6 +160,12 @@ jobs:
name: lint-reports
path: '**/build/reports/lint-results-*.html'
- name: Upload lint reports (SARIF)
if: always()
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: './'
- name: Check badging
run: ./gradlew :app:checkProdReleaseBadging

@ -42,5 +42,6 @@ class AndroidLintConventionPlugin : Plugin<Project> {
private fun Lint.configure() {
xmlReport = true
sarifReport = true
checkDependencies = true
}

Loading…
Cancel
Save