From 16894c6c7539d356799de3cab339e7094d05afba Mon Sep 17 00:00:00 2001 From: Sebastian Spaink <3441183+sspaink@users.noreply.github.com> Date: Tue, 27 Apr 2021 12:03:50 -0500 Subject: [PATCH] Resolve dependabot error by ignoring package (#9202) Ignoring the package `gopkg.in/djherbis/times.v1` because it is causing dependabot to throw the following error: ``` Dependabot wasn't able to update gopkg.in/djherbis/times.v1 The module path gopkg.in/djherbis/times.v1 found in your go.mod doesn't match the actual path github.com/djherbis/times found in the dependency's go.mod. Updating the module path in your go.mod to github.com/djherbis/times should resolve this issue. ``` --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f1b219b47..a2e4551e3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,6 @@ updates: directory: "/" schedule: interval: "weekly" + ignore: + # Dependabot isn't able to update this package do the name not matching the source + - dependency-name: "gopkg.in/djherbis/times.v1"