From b5ac9edcacaf4deb4eb14c127ada943c8143c481 Mon Sep 17 00:00:00 2001 From: Raphael Reitzig <4246780+reitzig@users.noreply.github.com> Date: Mon, 1 Apr 2024 19:25:07 +0200 Subject: [PATCH] feat(ci): Configure weekly update of Actions and indirect Ruby dependencies --- .github/dependabot.yml | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cb2c033..e1b4066 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,25 @@ version: 2 updates: - - package-ecosystem: "bundler" # See documentation for possible values - directory: "test" # Location of package manifests + - package-ecosystem: "bundler" + directory: "test" + allow: + - dependency-type: "all" + schedule: + interval: "weekly" + groups: + # TODO: Can't we merge the two groups? + test-dev-non-major: + dependency-type: development + update-types: + - patch + - minor + test-prod-non-major: + dependency-type: production + update-types: + - patch + - minor + - package-ecosystem: "github-actions" + directory: "/" schedule: interval: "weekly"