Create dependabot.yml to enable automatic version updates for GitHub Actions and npm packages.

This commit is contained in:
David Anson 2022-08-14 18:40:33 -07:00
parent 2488a5c0ce
commit eccae6d0d5

13
.github/dependabot.yml vendored Normal file
View file

@ -0,0 +1,13 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
target-branch: "next"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
target-branch: "next"
versioning-strategy: "increase"