From 8077a4bdf3f2623758c0c74fb4d856f1f67f38fe Mon Sep 17 00:00:00 2001 From: Mark Waite Date: Sun, 21 May 2023 06:06:01 -0600 Subject: [PATCH] Use correct dependency name syntax https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#ignore says > For Java dependencies, the format of the dependency-name attribute > is: groupId:artifactId (for example: org.kohsuke:github-api). --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b28e9eeb..54d1dc4d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,5 +13,5 @@ updates: ignore: # maven plugin updates break plugin bill of materials # do not offer minor version updates - - dependency-name: "maven-plugin" + - dependency-name: "org.jenkins-ci.main:maven-plugin" update-types: ["version-update:semver-minor"]