From 624fd47574484827c269f7779005939761c6047a Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 12 Sep 2024 11:54:34 +1000 Subject: [PATCH] CI: Run the nightly update job at 5 past midnight Currently we run the job at midnight here and in `bitcoin`, this led recently to one using the nightly toolchain from the 10th of Sep and the other using the toolchain from 11th of Sep. Update to run at 5 past so this doesn't happen again. --- .github/workflows/cron-semi-weekly-update-nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cron-semi-weekly-update-nightly.yml b/.github/workflows/cron-semi-weekly-update-nightly.yml index 51f7afa2e..5ee7d48f0 100644 --- a/.github/workflows/cron-semi-weekly-update-nightly.yml +++ b/.github/workflows/cron-semi-weekly-update-nightly.yml @@ -1,7 +1,7 @@ name: Update Nightly rustc on: schedule: - - cron: "0 0 * * 1,4" # runs every Monday and Thursday at 00:00 + - cron: "5 0 * * 1,4" # runs every Monday and Thursday at 00:05 UTC workflow_dispatch: # allows manual triggering jobs: format: