From b619b661d2ec24604317c040944551919a4e0951 Mon Sep 17 00:00:00 2001 From: Shuhei Iitsuka Date: Tue, 8 Sep 2026 14:55:21 +0900 Subject: [PATCH] Set default cooldown for dependabot updates to 7 days Added cooldown period of 7 days for various package ecosystems in dependabot configuration. --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4a256b80..ab5e58b3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -30,6 +30,8 @@ updates: - "*" update-types: - "patch" + cooldown: + default-days: 7 # GitHub Actions updates - package-ecosystem: github-actions @@ -45,6 +47,8 @@ updates: - "*" update-types: - "patch" + cooldown: + default-days: 7 # JavaScript/npm updates - package-ecosystem: npm @@ -59,6 +63,8 @@ updates: - "*" update-types: - "patch" + cooldown: + default-days: 7 # Java/Maven updates - package-ecosystem: maven @@ -71,3 +77,5 @@ updates: - "*" update-types: - "patch" + cooldown: + default-days: 7