From 92cc720841238d914d19d2d289ad8e5f5e38d124 Mon Sep 17 00:00:00 2001 From: Thomas Pierce Date: Wed, 15 Oct 2025 09:28:22 -0700 Subject: [PATCH] Update daily-scan.yml to run every 6 hours We still see periodic failures in this workflow and sometimes 2 failures in a row is enough to cause an alarm (b/c of when the tests run and when the alarm is evaluated). Increase run rate to every 6 hours to reduce chance of 2 failures causing an alarm. --- .github/workflows/daily-scan.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/daily-scan.yml b/.github/workflows/daily-scan.yml index bc699bdae..8f572aaf7 100644 --- a/.github/workflows/daily-scan.yml +++ b/.github/workflows/daily-scan.yml @@ -8,10 +8,8 @@ name: Daily scan on: - schedule: # scheduled to run at 14:00, 20:00, 02:00 UTC every day - - cron: '0 14 * * *' # 6:00/7:00 PST/PDT (14:00 UTC) - - cron: '0 20 * * *' # 12:00/13:00 PST/PDT (20:00 UTC) - - cron: '0 02 * * *' # 18:00/19:00 PST/PDT (02:00 UTC) + schedule: # scheduled to run every 6 hours + - cron: '20 */6 * * **' # “At minute 20 past every 6th hour.” workflow_dispatch: # be able to run the workflow on demand env: