From d09d5cf2ac972e1974e908748f1744dfe870d322 Mon Sep 17 00:00:00 2001 From: Matthew Sevey <15232757+MSevey@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:26:35 -0500 Subject: [PATCH] build(deps): add dependabot --- .github/dependabot.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..decb467 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,36 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: weekly + open-pull-requests-limit: 10 + groups: + patch-updates: + applies-to: version-updates + update-types: + - "patch" + - "minor" + # Including this due to certain github action steps installing via npm + - package-ecosystem: npm + directory: "/" + schedule: + interval: weekly + open-pull-requests-limit: 10 + groups: + patch-updates: + applies-to: version-updates + update-types: + - "patch" + - "minor" + - package-ecosystem: docker + directory: "/docker" + schedule: + interval: weekly + open-pull-requests-limit: 10 + groups: + patch-updates: + applies-to: version-updates + update-types: + - "patch" + - "minor"