Skip to content

chore(deps): bump actions/upload-artifact from 3.pre.node20 to 4.3.4 #54

chore(deps): bump actions/upload-artifact from 3.pre.node20 to 4.3.4

chore(deps): bump actions/upload-artifact from 3.pre.node20 to 4.3.4 #54

Workflow file for this run

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/[email protected]
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