From 1eae5354daf0300974dd300b26b31c9b59df8dd8 Mon Sep 17 00:00:00 2001 From: Maksim Levental Date: Wed, 28 Aug 2024 00:10:56 -0400 Subject: [PATCH] Slow down CI-windows cache warming Every 4 hours is a little overzealous - don't want to blow out our cache limit of 10Gb. --- .github/workflows/ci-windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index bf2ff55da..c299a73ed 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -10,9 +10,9 @@ on: - main schedule: - # At minute 0 past every 4nd hour. (see https://crontab.guru) + # At minute 0 past every 12th hour. (see https://crontab.guru) # this job is to keep the ccache cache warm - - cron: '0 */4 * * *' + - cron: '0 */12 * * *' concurrency: # A PR number if a pull request and otherwise the commit hash. This cancels