Code scanning #314
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code scanning | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
schedule: | |
- cron: '33 19 * * *' | |
jobs: | |
static-analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Run Detekt & Lint | |
continue-on-error: true | |
run: ./gradlew detektMetadataMain lint --continue | |
- name: Upload SARIF binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: sarif-reports | |
path: '**/*.sarif' | |
upload-results: | |
needs: static-analysis | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
strategy: | |
matrix: | |
path: | |
- core | |
- material3 | |
steps: | |
- name: Download scan results | |
uses: actions/download-artifact@v4 | |
with: | |
name: sarif-reports | |
- uses: github/codeql-action/upload-sarif@v3 | |
continue-on-error: true | |
with: | |
sarif_file: ${{ matrix.path }}/ | |
category: ${{ matrix.path }} |