dependabot.yml 579 B

123456789101112131415161718192021
  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: "monthly"
  12. # Enable version updates for Docker
  13. - package-ecosystem: "docker"
  14. # Look for a `Dockerfile` in the `root` directory
  15. directory: "/"
  16. # Check for updates once a week
  17. schedule:
  18. interval: "monthly"