From e076201776530e51a94b8727531f8d53f82b1dd8 Mon Sep 17 00:00:00 2001 From: Michael Beale Date: Tue, 30 Jul 2024 09:39:17 -0700 Subject: [PATCH] Dependabot auto update limits (#33) Update dependabot.yml limiting Dependabot to auto update minor and patch updates for dependencies. --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 57489e6..9b9c136 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,6 @@ updates: directory: "/kerngen" # Location of package manifests schedule: interval: "weekly" + allow: + - dependency-name: "*" + update-types: ["version-update:semver-minor", "version-update:semver-patch"]