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:
Sebastian Spaink 2021-04-27 12:03:50 -05:00 committed by GitHub
parent 56a2df9ec8
commit 16894c6c75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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"