From 419801f2a331b33eee1f99f8013f77a0ca0f2af2 Mon Sep 17 00:00:00 2001 From: Simon Davies Date: Tue, 26 Aug 2025 09:59:40 +0100 Subject: [PATCH 1/2] Adds members excluded from workspace cargo.toml to dependabot Signed-off-by: Simon Davies --- .github/dependabot.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1754b71..6fe2a3c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,3 +16,36 @@ updates: target-branch: "main" labels: - "kind/dependencies" + # Add entries for excluded workspace members + - package-ecosystem: "cargo" + directory: "/src/wasm_runtime" + schedule: + interval: "daily" + time: "03:00" + target-branch: "main" + labels: + - "kind/dependencies" + - package-ecosystem: "cargo" + directory: "/src/rust_wasm_samples" + schedule: + interval: "daily" + time: "03:00" + target-branch: "main" + labels: + - "kind/dependencies" + - package-ecosystem: "cargo" + directory: "/src/hyperlight_wasm_macro" + schedule: + interval: "daily" + time: "03:00" + target-branch: "main" + labels: + - "kind/dependencies" + - package-ecosystem: "cargo" + directory: "/src/component_sample" + schedule: + interval: "daily" + time: "03:00" + target-branch: "main" + labels: + - "kind/dependencies" From 22b6fa80c4006614dea319a1d9fc75df11c8134c Mon Sep 17 00:00:00 2001 From: Simon Davies Date: Wed, 27 Aug 2025 18:03:29 +0100 Subject: [PATCH 2/2] ignore wasmtime major and minor versions Signed-off-by: Simon Davies --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6fe2a3c..2c7c1f9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,6 +16,9 @@ updates: target-branch: "main" labels: - "kind/dependencies" + ignore: + - dependency-name: "wasmtime" + update-types: ["version-update:semver-minor", "version-update:semver-major"] # Add entries for excluded workspace members - package-ecosystem: "cargo" directory: "/src/wasm_runtime" @@ -25,6 +28,9 @@ updates: target-branch: "main" labels: - "kind/dependencies" + ignore: + - dependency-name: "wasmtime" + update-types: ["version-update:semver-minor", "version-update:semver-major"] - package-ecosystem: "cargo" directory: "/src/rust_wasm_samples" schedule: