Skip to content

Commit 12220fe

Browse files
committed
Increase container scan frequency from weekly to daily
- Change schedule from 'Monday at 6am UTC' to 'daily at 12pm UTC' - 12pm UTC = 7am-8am Boston time (depending on DST), allowing same- day action on newly discovered CVEs - Trivy DB updates every 6 hours; daily scans catch CVEs within 24h vs up to 7 days with weekly scans - No cost impact (public repo = unlimited free GHA minutes)
1 parent 17399e5 commit 12220fe

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/container-scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Scheduled Container Vulnerability Scan
22

33
on:
44
schedule:
5-
# Weekly scan of main branch mega image every Monday at 06:00 UTC
6-
- cron: '0 6 * * 1'
5+
# Daily scan of main branch mega image at 12:00 UTC
6+
- cron: '0 12 * * *'
77
workflow_dispatch:
88
inputs:
99
test_cve_id:

0 commit comments

Comments
 (0)