From 250a94c588b151f846eb60f32980801791a975f0 Mon Sep 17 00:00:00 2001 From: Rangi <35663410+Rangi42@users.noreply.github.com> Date: Thu, 2 Jul 2026 07:55:16 -0400 Subject: [PATCH] Tell Dependabot to ignore minor and patch releases (#2001) We specify major-only versions, e.g. `actions/checkout@v7`, which automatically uses the latest minor+patch of that release. --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2f33cc35..ed475dab 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,4 +11,9 @@ updates: groups: actions: patterns: [ "*" ] + ignore: + - dependency-name: "*" + update-types: + - "version-update:semver-minor" + - "version-update:semver-patch" labels: [ builds ] # Since those are CI-related updates...