From f9bdf6a054c32efd2bbdceadc4e4c8f38af85dd8 Mon Sep 17 00:00:00 2001 From: Daniel Kennedy Date: Wed, 24 Sep 2025 16:00:44 -0400 Subject: [PATCH] Dependabot: add support for `/packages/artifact` and `/packages/cache --- .github/dependabot.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..0962f63f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,27 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/packages/artifact" + schedule: + interval: "daily" + groups: + # Group minor and patch updates together but keep major separate + npm-minor-patch-updates: + update-types: + - "minor" + - "patch" + - package-ecosystem: "npm" + directory: "/packages/cache" + schedule: + interval: "daily" + groups: + # Group minor and patch updates together but keep major separate + npm-minor-patch-updates: + update-types: + - "minor" + - "patch" \ No newline at end of file