From c9c8e700cb7b8f9a31e75faad40563bf52d37432 Mon Sep 17 00:00:00 2001 From: Cain <75994858+cainthebest@users.noreply.github.com> Date: Wed, 8 Nov 2023 21:56:58 +0000 Subject: [PATCH] chore: add dependabot config (#150) --- .github/dependabot.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..bdb8e27 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/.github/workflows" + schedule: + interval: "daily" + + - package-ecosystem: "cargo" + directory: "/crates/cli" + schedule: + interval: "daily" + + - package-ecosystem: "cargo" + directory: "/crates/lib" + schedule: + interval: "daily"