From c6b005fd65ee15ab1a3ecd488722f1023141868e Mon Sep 17 00:00:00 2001 From: vishal <1117327+vishalchangrani@users.noreply.github.com> Date: Mon, 1 Jun 2026 17:59:43 -0400 Subject: [PATCH] fix: use valid dependabot schedule interval Replace unsupported 'custom' interval and 'interval-count' with 'weekly', which is the closest valid option to the intended bi-weekly cadence. Co-Authored-By: Claude Sonnet 4.6 --- .github/dependabot.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9e12758bf..2505cbb78 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,9 +3,8 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "custom" - interval-count: 14 - time: "12:00" # Adjust the time to your preferred schedule + interval: "weekly" + time: "12:00" - package-ecosystem: "gomod" allow: @@ -15,9 +14,8 @@ updates: update-type: "semver-major" directory: "/" schedule: - interval: "custom" - interval-count: 14 - time: "12:00" # Adjust the time to your preferred schedule + interval: "weekly" + time: "12:00" ignore: - dependency-name: "github.com/onflow/flow-go" - dependency-name: "github.com/onflow/cadence"