diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0ec098c..664e942 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,28 +1,35 @@ -# Dependabot will run on day 26 of each month at 01:11 (Europe/Berlin timezone) +# Dependabot configuration +# Cooldown delays updating normal npm dependencies by 7 days but allows security updates to be processed immediately. +# Note: Cooldown is not supported for the github-actions ecosystem. +# Reference: https://docs.github.com/en/code-security/reference/supply-chain-security/dependabot-options-reference version: 2 updates: - - package-ecosystem: "github-actions" - directory: "/" + - package-ecosystem: 'github-actions' + directory: '/' schedule: - interval: "cron" - timezone: "Europe/Berlin" - cronjob: "11 1 26 * *" + interval: 'cron' + timezone: 'Europe/Berlin' + cronjob: '11 1 26 * *' open-pull-requests-limit: 15 - - package-ecosystem: "npm" - directory: "/" + - package-ecosystem: 'npm' + directory: '/' schedule: - interval: "weekly" - timezone: "Europe/Berlin" + interval: 'weekly' + timezone: 'Europe/Berlin' open-pull-requests-limit: 15 - versioning-strategy: "increase" + versioning-strategy: 'increase' + cooldown: + default-days: 7 - - package-ecosystem: "npm" - directory: "/src-admin" + - package-ecosystem: 'npm' + directory: '/src-admin' schedule: - interval: "cron" - timezone: "Europe/Berlin" - cronjob: "11 1 26 * *" + interval: 'cron' + timezone: 'Europe/Berlin' + cronjob: '11 1 26 * *' open-pull-requests-limit: 20 - versioning-strategy: "increase" + versioning-strategy: 'increase' + cooldown: + default-days: 7