diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..6bca6ec --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "gomod" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" diff --git a/go.mod b/go.mod index 4caa5d7..4e946c9 100644 --- a/go.mod +++ b/go.mod @@ -4,6 +4,6 @@ go 1.14 require ( github.com/google/uuid v1.2.0 - golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4 + golang.org/x/net 0.7.0 golang.org/x/sync v0.0.0-20210220032951-036812b2e83c )