From 7da95b182ee8bcc32bfb0e6f34a719867c2395ba Mon Sep 17 00:00:00 2001 From: Daniel Kennedy Date: Wed, 24 Sep 2025 16:00:44 -0400 Subject: [PATCH 1/2] 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 From 1ea77a84d7c3df8f6e4b1330ff7615d8ea7e1475 Mon Sep 17 00:00:00 2001 From: Daniel Kennedy Date: Wed, 24 Sep 2025 16:04:16 -0400 Subject: [PATCH 2/2] Update the group names --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0962f63f..ab6e64ae 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,7 +11,7 @@ updates: interval: "daily" groups: # Group minor and patch updates together but keep major separate - npm-minor-patch-updates: + artifact-minor-patch: update-types: - "minor" - "patch" @@ -21,7 +21,7 @@ updates: interval: "daily" groups: # Group minor and patch updates together but keep major separate - npm-minor-patch-updates: + cache-minor-patch: update-types: - "minor" - "patch" \ No newline at end of file