From c84aef99bfea7a33915a6e89da4bd1d9c5927483 Mon Sep 17 00:00:00 2001 From: Adam Kunicki Date: Sun, 26 Sep 2021 17:14:53 -0700 Subject: [PATCH] ci: add dependabot configuration Adds automated dependabot PRs for go and github actions dependencies. --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d30f881 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily"