dependabot.yml 491 B

1234567891011121314151617
  1. # Basic dependabot.yml file with
  2. # minimum configuration for two package managers
  3. version: 2
  4. updates:
  5. # Enable version updates for npm
  6. - package-ecosystem: "npm"
  7. # Look for `package.json` and `lock` files in the `root` directory
  8. directory: "/"
  9. # Check the npm registry for updates every day (weekdays)
  10. schedule:
  11. interval: "daily"
  12. # Enable updates to github actions
  13. - package-ecosystem: "github-actions"
  14. directory: "/"
  15. schedule:
  16. interval: "daily"