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. ```
This commit is contained in:
parent
56a2df9ec8
commit
16894c6c75
|
|
@ -4,3 +4,6 @@ updates:
|
||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
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"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue