From e5ae01ea71886d4dcc36bb84c58dccf50796fe09 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Thu, 13 Oct 2022 22:47:51 +0000 Subject: [PATCH] skip all patch updates --- .github/dependabot.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 277972792..31197c323 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,10 +10,8 @@ updates: schedule: interval: "daily" ignore: - # a few dependencies get a lot of patch updates that become pretty noisy - - dependency-name: "libc" + # skip patch updates, as they can be quite noisy, but keep + # minor and major updates so that we don't fall too far + # behind + - dependency-name: "*" update-types: ["version-update:semver-patch"] - - dependency-name: "clap" - update-types: ["version-update:semver-patch"] - -