From b3fe645f2ce80b3fc305455ef5e8454a3a2d271a Mon Sep 17 00:00:00 2001 From: Pawel Winogrodzki Date: Thu, 20 Aug 2026 15:35:40 -0700 Subject: [PATCH 1/2] ci: update actions on supported branches Configure Dependabot to open weekly grouped GitHub Actions updates for 4.0 and 3.0-dev. Keep the existing seven-day cooldown before proposing releases. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 3e4a178e-19a3-4caa-8a87-53fa6cabe7b9 --- .github/dependabot.yml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b0e1cfa3aef..0a59e6a63a2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -25,9 +25,28 @@ updates: patterns: - "*" - # GitHub Actions used by PR-check workflows. + # GitHub Actions used by PR-check workflows on the default branch. - package-ecosystem: github-actions directory: / + target-branch: "4.0" + schedule: + interval: weekly + open-pull-requests-limit: 5 + labels: + - dependencies + - github-actions + # github-actions cooldown only supports a flat default-days (no semver granularity). + cooldown: + default-days: 7 + groups: + actions: + patterns: + - "*" + + # GitHub Actions used by PR-check workflows on the development branch. + - package-ecosystem: github-actions + directory: / + target-branch: "3.0-dev" schedule: interval: weekly open-pull-requests-limit: 5 From c02f502a8312a99076321d18c078a2f08daad810 Mon Sep 17 00:00:00 2001 From: Pawel Winogrodzki Date: Thu, 20 Aug 2026 15:39:47 -0700 Subject: [PATCH 2/2] docs: clarify Dependabot branch comment Restore the existing default-branch wording and name 3.0-dev explicitly. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 3e4a178e-19a3-4caa-8a87-53fa6cabe7b9 --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0a59e6a63a2..87fbe9b80bb 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -25,7 +25,7 @@ updates: patterns: - "*" - # GitHub Actions used by PR-check workflows on the default branch. + # GitHub Actions used by PR-check workflows. - package-ecosystem: github-actions directory: / target-branch: "4.0" @@ -43,7 +43,7 @@ updates: patterns: - "*" - # GitHub Actions used by PR-check workflows on the development branch. + # GitHub Actions used by PR-check workflows on the 3.0-dev branch. - package-ecosystem: github-actions directory: / target-branch: "3.0-dev"