From 3fc828432f056b54a26f3ae2066657018fc6f068 Mon Sep 17 00:00:00 2001 From: Jamie Strandboge Date: Thu, 2 Nov 2023 07:13:41 -0500 Subject: [PATCH] chore: ignore Go in .github/dependabot.yml, take 3 Update to use the documented dependency-name: "*" methodology rather than an undocumented example. References: - https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file --- .github/dependabot.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5390ede0205..85616b70599 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -28,4 +28,5 @@ updates: # files that no longer exist. Tell dependabot to ignore "gomod" - package-ecosystem: "gomod" directory: "/" - ignore: "*" + ignore: + - dependency-name: "*"