From f5db03c834641dd1fb3fbd99682e1cf89a99925d Mon Sep 17 00:00:00 2001 From: Wade Simmons Date: Fri, 21 Jul 2023 17:21:58 -0400 Subject: [PATCH] add dependabot config (#922) This should give us PRs weekly with dependency updates, and also let us manually check for updates when needed. - https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file --- .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 000000000..603f65329 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly"