From 8adcef460fad07aa87bf32ed660471ab1e86100d Mon Sep 17 00:00:00 2001 From: Simon Davies Date: Wed, 16 Sep 2026 09:02:17 +0100 Subject: [PATCH] chore(deps): cover fixture workspace and add 7-day cooldown in dependabot Add src/hyperlight-js-runtime/tests/fixtures/extended_runtime to the cargo update config. It is a standalone workspace with its own Cargo.lock that CI validates via `just check-fixture-lock`, so it drifts out of sync when Dependabot bumps a hyperlight-js-runtime dependency in the root workspace. Also set a 7-day cooldown on all three update configs to reduce PR churn. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Signed-off-by: Simon Davies --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8ee3c752..4acf093d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,14 +5,20 @@ updates: schedule: interval: "daily" time: "03:00" + cooldown: + default-days: 7 labels: - "kind/dependencies" - package-ecosystem: "cargo" directories: - "/" + # Standalone workspace with its own Cargo.lock, validated by `just check-fixture-lock` + - "/src/hyperlight-js-runtime/tests/fixtures/extended_runtime" schedule: interval: "daily" time: "03:00" + cooldown: + default-days: 7 labels: - "kind/dependencies" - package-ecosystem: "npm" @@ -22,5 +28,7 @@ updates: schedule: interval: "daily" time: "03:00" + cooldown: + default-days: 7 labels: - "kind/dependencies" \ No newline at end of file