Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Security Scan

on:
pull_request:
push:
branches: [main]
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
scan:
name: security-scan
uses: Wider-Community/ci-templates/.github/workflows/security-scan.yml@main
with:
# Report-only rollout: visibility first, tighten thresholds once
# findings are triaged (WID-928, following the AQWUM-Core pilot in WID-824).
fail-on-secrets: false
dependency-fail-severity: none
sast-fail-severity: none
Loading