Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

security:
name: Security Scanning
uses: ./.github/workflows/weekly-security.yml
uses: ./.github/workflows/nightly-security.yml
with:
upload-sarif: false
secrets: inherit
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
name: Weekly Security Scan
name: Nightly Security Scan
run-name: |
Security Scan by @${{ github.actor }}

"on":
schedule:
- cron: "0 2 * * 1" # Weekly Monday 02:00 UTC
- cron: "0 2 * * *" # Daily 02:00 UTC (public repo — Actions minutes are free)
workflow_dispatch:
workflow_call:
inputs:
Expand All @@ -14,6 +14,10 @@ run-name: |
type: boolean
default: true

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

permissions:
contents: read
security-events: write
Expand Down
Loading