diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2007095..c62eb3c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,9 +4,9 @@ updates: - package-ecosystem: "npm" # Look for `package.json` and `package-lock.json` files in the root directory directory: "/" - # Check for updates daily + # Check for updates weekly schedule: - interval: "daily" + interval: "weekly" allow: # Allow direct updates only (for packages named in package.json) - dependency-type: "direct" @@ -17,11 +17,19 @@ updates: - package-ecosystem: "composer" # Look for `composer.json` and `composer.lock` files in the root directory directory: "/" - # Check for updates daily + # Check for updates weekly schedule: - interval: "daily" + interval: "weekly" allow: # Allow direct updates only (for packages named in composer.json) - dependency-type: "direct" # Allow up to 10 open pull requests for composer dependencies open-pull-requests-limit: 10 + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + allow: + - dependency-type: "direct" + open-pull-requests-limit: 10