From 3532b3b96087343b552b997aa30aea05ae87ec69 Mon Sep 17 00:00:00 2001 From: Zachary Dremann Date: Fri, 29 Sep 2023 23:38:39 -0400 Subject: [PATCH] Add dependabot config to auto-update cargo and github actions --- .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..60d14db --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "weekly"