From fa9713088b1c70e19df4c8a94b192de12e89c4af Mon Sep 17 00:00:00 2001 From: Jan Raasch Date: Thu, 24 Sep 2020 17:00:46 +0200 Subject: [PATCH] chore: add dependabot.yml see https://docs.github.com/en/github/administering-a-repository/keeping-your-dependencies-updated-automatically --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..60a68af --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +# see https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + + # Maintain dependencies for npm + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily"