From 8cd1b307e8cfba5bcba36a47db65375c903cd4bc Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Sat, 4 Jul 2026 11:10:01 +0200 Subject: [PATCH 1/2] [TASK] Enable Dependabot workflow updates on maintained version branches Signed-off-by: Sebastian Mendel --- .github/dependabot.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2915d838..d71e780c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,3 +7,29 @@ updates: interval: weekly day: monday open-pull-requests-limit: 5 + + # Maintained version branches: keep workflow action pins from drifting + # behind main (Dependabot only scans the default branch otherwise). + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "12.4" + schedule: + interval: weekly + day: monday + open-pull-requests-limit: 5 + + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "13.4" + schedule: + interval: weekly + day: monday + open-pull-requests-limit: 5 + + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "14.3" + schedule: + interval: weekly + day: monday + open-pull-requests-limit: 5 From 0d346318745d3648e4182bcd4ed946c0f47bc603 Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Fri, 10 Jul 2026 19:53:18 +0200 Subject: [PATCH 2/2] [TASK] Drop 12.4 target branch from Dependabot config Review feedback: 12.4 no longer receives backports, so no workflow update PRs should target it. 13.4 and 14.3 sections stay. Signed-off-by: Sebastian Mendel --- .github/dependabot.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d71e780c..7fbdc449 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,14 +10,6 @@ updates: # Maintained version branches: keep workflow action pins from drifting # behind main (Dependabot only scans the default branch otherwise). - - package-ecosystem: "github-actions" - directory: "/" - target-branch: "12.4" - schedule: - interval: weekly - day: monday - open-pull-requests-limit: 5 - - package-ecosystem: "github-actions" directory: "/" target-branch: "13.4"