From 155e9db0e6a2386608770d2f49b26cb9e89d6e33 Mon Sep 17 00:00:00 2001 From: DTTerastar Date: Sat, 9 May 2026 10:54:40 -0400 Subject: [PATCH] ci: probe API host daily, not weekly Liftoff retires version-pinned hosts on a cadence faster than once a week. The Monday-only schedule meant up to 7 days of broken refreshes between rotation and the auto-bump PR landing. Going to once a day. Still ~30s of CI time per run; total cost is trivially under the free tier. Worst-case lag drops from a week to a day, plus workflow_dispatch for ad-hoc runs when a user notices first. Co-Authored-By: Claude Opus 4.7 (1M context) Co-authored-by: Orca --- .github/workflows/api-host-probe.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/api-host-probe.yml b/.github/workflows/api-host-probe.yml index fe367c4..b2cb693 100644 --- a/.github/workflows/api-host-probe.yml +++ b/.github/workflows/api-host-probe.yml @@ -2,7 +2,7 @@ name: Probe Liftoff API host rotation on: schedule: - - cron: '0 14 * * 1' # Mondays 14:00 UTC (10am EDT / 9am EST) + - cron: '0 14 * * *' # Daily 14:00 UTC (10am EDT / 9am EST) workflow_dispatch: permissions: