From 1cab9a1d285e848c27b9fa167dab6ec3ba3dbf2f Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Mon, 31 Aug 2020 15:58:21 +0200 Subject: [PATCH] Add dependabot Without this patch, our deps will have to be manually maintained. This should fix it. --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..6bf603a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + # Maintain dependencies for gomod + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily"