From f543e89258261a09afc80d2cdcdde9d3ec3afea1 Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Mon, 11 Dec 2023 20:01:24 +0100 Subject: [PATCH] Add dependabot configuration Enable dependabot on a weekly schedule to get PRs (notifications) for crate dependency upgrades, as well as GitHub Actions step updates. --- .github/dependabot.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 000000000..8be550a8b --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: cargo + directory: "/" + schedule: + interval: weekly + - package-ecosystem: github-actions + directory: "/.github/workflows/" + schedule: + interval: weekly