From 476f6ba2af416c79b14503f8f7ad044886438d20 Mon Sep 17 00:00:00 2001 From: Horst Gutmann Date: Sun, 19 Oct 2025 11:24:46 +0200 Subject: [PATCH] chore: fix cooldown in dependabot config The minimum value is 1 days. --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 726cd443f..767592392 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,7 +7,7 @@ updates: default-days: 5 semver-major-days: 14 semver-minor-days: 5 - semver-patch-days: 0 + semver-patch-days: 1 directory: "/actions/trigger-argo-workflow" schedule: interval: "weekly" @@ -22,7 +22,7 @@ updates: default-days: 5 semver-major-days: 14 semver-minor-days: 5 - semver-patch-days: 0 + semver-patch-days: 1 directory: "/actions/techdocs-rewrite-relative-links" schedule: interval: "weekly"