From a1da078e41d0427a32446c2ea506fdfa607d4e1f Mon Sep 17 00:00:00 2001 From: Sebastian Imlay Date: Sun, 21 Aug 2022 20:05:14 -0400 Subject: [PATCH] Add dependabot --- .github/dependabot.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..3b47d2d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,20 @@ +version: 2 +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every weekday + interval: "daily" + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-patch"] # ignore patch updates + + # Maintain dependencies for Cargo + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "daily" + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-patch"] # ignore patch updates