From 0153cf949d4d306954b68ecaee300a763c220728 Mon Sep 17 00:00:00 2001 From: GeiserX <9169332+GeiserX@users.noreply.github.com> Date: Sun, 7 Jun 2026 18:25:44 +0200 Subject: [PATCH] ci(dependabot): allow github-actions major bumps Remove the semver-major ignore from the github-actions ecosystem so action major upgrades (Node-runtime bumps) get PRs. npm/docker majors stay gated. --- .github/dependabot.yml | 68 ++++++++++++++++++++---------------------- 1 file changed, 32 insertions(+), 36 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 09bbccb..6e68204 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,38 +1,34 @@ version: 2 updates: -- package-ecosystem: docker - directory: / - schedule: - interval: weekly - day: monday - commit-message: - prefix: docker - labels: - - docker - - automated - groups: - docker_security: - applies-to: security-updates - patterns: - - '*' -- package-ecosystem: github-actions - directory: / - schedule: - interval: monthly - commit-message: - prefix: ci - labels: - - ci - - automated - groups: - github-actions: - patterns: - - '*' - github_actions_security: - applies-to: security-updates - patterns: - - '*' - ignore: - - dependency-name: '*' - update-types: - - version-update:semver-major + - package-ecosystem: docker + directory: / + schedule: + interval: weekly + day: monday + commit-message: + prefix: docker + labels: + - docker + - automated + groups: + docker_security: + applies-to: security-updates + patterns: + - '*' + - package-ecosystem: github-actions + directory: / + schedule: + interval: monthly + commit-message: + prefix: ci + labels: + - ci + - automated + groups: + github-actions: + patterns: + - '*' + github_actions_security: + applies-to: security-updates + patterns: + - '*'