From 1d90236199ae8c6d57f024c6639461beda9f17e1 Mon Sep 17 00:00:00 2001 From: BWM0223 Date: Sun, 21 Jun 2026 08:46:29 -0700 Subject: [PATCH] fix: Add Dependabot (or Renovate) for Cargo and npm (#63) --- .github/dependabot.yml | 51 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..086342c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,51 @@ +languages: + - rust + - javascript + - typescript + +version: 2 + +rust: + # Update dependencies for the entire workspace + # Group updates to reduce PR noise + update_schedule: "weekly" + # Target the root Cargo.toml which defines the workspace + target: "Cargo.toml" + +javascript: + # Update dependencies for the root package.json + # Group updates to reduce PR noise + update_schedule: "weekly" + # Target the root package.json + target: "package.json" + +typescript: + # Update dependencies for the frontend package.json + # Group updates to reduce PR noise + update_schedule: "weekly" + # Target the frontend/package.json + target: "frontend/package.json" + +# Update dependencies for the circuits package.json +# Group updates to reduce PR noise +javascript: + update_schedule: "weekly" + target: "circuits/package.json" + +# Update dependencies for the root package.json +# Group updates to reduce PR noise +javascript: + update_schedule: "weekly" + target: "package.json" + +# Update dependencies for the frontend package.json +# Group updates to reduce PR noise +javascript: + update_schedule: "weekly" + target: "frontend/package.json" + +# Update dependencies for the circuits package.json +# Group updates to reduce PR noise +javascript: + update_schedule: "weekly" + target: "circuits/package.json" \ No newline at end of file