From 3c379339dd4b799c9a63b1127b67162d8390ef4d Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Tue, 17 May 2022 10:37:38 -0700 Subject: [PATCH] Configure automatic Dependabot version updates (#151) This is enabled for GitHub Actions and Python packages. --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..42b6c1e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +--- +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily"