From faf744391c62a1fef8e5c189354652e13469a010 Mon Sep 17 00:00:00 2001 From: James Sturtevant Date: Tue, 18 Aug 2026 12:31:56 -0700 Subject: [PATCH] Add Dependabot update cooldown Signed-off-by: James Sturtevant --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 21e8a78..2286f2f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,12 +5,16 @@ updates: directory: "/" schedule: interval: "weekly" + cooldown: + default-days: 10 # Rust (root workspace) - package-ecosystem: "cargo" directory: "/" schedule: interval: "weekly" + cooldown: + default-days: 10 ignore: # wasmtime (indirect, via hyperlight-wasm) must stay aligned with the # hyperlight-wasm-aot CLI that compiles .aot guest binaries. The AOT @@ -25,27 +29,37 @@ updates: directory: "/src/sdk/python/wasm_backend" schedule: interval: "weekly" + cooldown: + default-days: 10 # Rust (Python hyperlight-js backend — separate workspace) - package-ecosystem: "cargo" directory: "/src/sdk/python/hyperlight_js_backend" schedule: interval: "weekly" + cooldown: + default-days: 10 # Rust (Python pyo3 common — separate workspace) - package-ecosystem: "cargo" directory: "/src/sdk/python/pyo3_common" schedule: interval: "weekly" + cooldown: + default-days: 10 # Python (uv/pip) - package-ecosystem: "pip" directory: "/" schedule: interval: "weekly" + cooldown: + default-days: 10 # npm (JavaScript guest) - package-ecosystem: "npm" directory: "/src/wasm_sandbox/guests/javascript" schedule: interval: "weekly" + cooldown: + default-days: 10