From 0f6a99869a8f8c59067e0193beb2adad3737d9b7 Mon Sep 17 00:00:00 2001 From: Gerard Snaauw Date: Mon, 9 Aug 2021 15:56:58 +0200 Subject: [PATCH] Move to Dependabot --- .github/dependabot.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..848221e4f4 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,31 @@ +version: 2 +updates: + # github actions + - package-ecosystem: "github-actions" + # checks workflow files in /.github/workflows + directory: "/" + schedule: + interval: "daily" + + # Go + - package-ecosystem: "gomod" + # checks /go.mod + directory: "/" + schedule: + interval: "daily" + + # Docker + - package-ecosystem: "docker" + # checks /Dockerfile + directory: "/" + schedule: + interval: "daily" + + # Python (PRs disabled) + - package-ecosystem: "pip" + # checks /docs/requirements.txt + directory: "/docs" + schedule: + interval: "weekly" + # Allow up to 0 open pull requests for pip dependencies + open-pull-requests-limit: 0 \ No newline at end of file