chore(deps): bump io.mockative:mockative from 1.4.1 to 2.1.0 #48
Workflow file for this run
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: Scan with Detekt | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
permissions: | |
# required for all workflows | |
security-events: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: natiginfo/action-detekt-all@1.23.6 | |
with: | |
args: --report sarif:build/reports/detekt/detekt.sarif | |
continue-on-error: true | |
# Make sure we always run this upload task, | |
# because the previous step may fail if there are findings. | |
- name: Upload SARIF to GitHub using the upload-sarif action | |
uses: github/codeql-action/upload-sarif@v3 | |
if: success() || failure() | |
with: | |
sarif_file: build/reports/detekt/detekt.sarif | |
# Optional category for the results | |
# Used to differentiate multiple results for one commit | |
category: detekt |