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: 5 additions & 2 deletions .github/workflows/validate-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@ on:
# exercised on the PR that introduces them.
- '.github/workflows/validate-deps.yml'
schedule:
# Run weekly on Monday at 03:00 UTC
- cron: '0 3 * * 1'
# Run daily at 03:00 UTC — narrows the discovery window for a new OSV
# advisory from up to six days (weekly) to one, so the scheduled scan
# is more likely to surface a red before an unrelated PR's blocking
# trigger collides with it (#14645).
- cron: '0 3 * * *'
workflow_dispatch:

jobs:
Expand Down
Loading