diff options
author | Jan Raasch <jan@janraasch.com> | 2020-09-24 17:00:46 +0200 |
---|---|---|
committer | Jan Raasch <jan@janraasch.com> | 2020-09-24 17:00:58 +0200 |
commit | fa9713088b1c70e19df4c8a94b192de12e89c4af (patch) | |
tree | 8a50d7d57049bbafe2a19a26ec96d62b72fc40ed /.github | |
parent | dcff8a4f858ee892b177cd312c643c42a917f0ec (diff) | |
download | hugo-bearcub-fa9713088b1c70e19df4c8a94b192de12e89c4af.tar.gz hugo-bearcub-fa9713088b1c70e19df4c8a94b192de12e89c4af.tar.bz2 |
chore: add dependabot.yml
see https://docs.github.com/en/github/administering-a-repository/keeping-your-dependencies-updated-automatically
Diffstat (limited to '.github')
-rw-r--r-- | .github/dependabot.yml | 14 |
1 files changed, 14 insertions, 0 deletions
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" |