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
7 changes: 6 additions & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ on:
pull_request:
branches: [main]
schedule:
- cron: '0 3 * * *'
# Saturday 11:07 UTC = Sat 21:07 AEST / 22:07 AEDT (Sydney night, year-round).
# Weekly cadence: deep fuzz at 8h/target × 16 targets is ~128 runner-hours.
# PR-time coverage (cargo audit/deny, Cargo Vet, Quick Fuzz, CodeQL) catches
# regressions promptly; deep fuzz is for finding bugs, not gating merges.
# Off-minute (:07) avoids the cron pile-up that GitHub schedules at :00.
- cron: '7 11 * * 6'
release:
types: [published]

Expand Down
Loading