From 6975b431197241de88beb858e612dfc5c37f414f Mon Sep 17 00:00:00 2001 From: Bret Comnes <166301+bcomnes@users.noreply.github.com> Date: Mon, 7 Sep 2020 13:09:38 -0600 Subject: [PATCH] Create dependabot.yml --- .github/dependabot.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..cd84f67 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +# Basic dependabot.yml file with +# minimum configuration for two package managers + +version: 2 +updates: + # Enable version updates for npm + - package-ecosystem: "npm" + # Look for `package.json` and `lock` files in the `root` directory + directory: "/" + # Check the npm registry for updates every day (weekdays) + schedule: + interval: "daily" + # Enable updates to github actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" +