From 9f156dc72f469494ccf453ad43465b89045c4b5a Mon Sep 17 00:00:00 2001 From: Kevin Franklin Kim Date: Fri, 19 Sep 2025 16:52:56 +0200 Subject: [PATCH] chore: update dependabot --- .github/dependabot.yml | 50 +++++++++++++++++++++++++----------------- 1 file changed, 30 insertions(+), 20 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 44f8855..c90e96a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,33 +1,43 @@ -# Please see the documentation for all configuration options: -# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates +# yaml-language-server: $schema=https://raw.githubusercontent.com/SchemaStore/schemastore/refs/heads/master/src/schemas/json/dependabot-2.0.json +# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference version: 2 updates: - - package-ecosystem: 'github-actions' + - package-ecosystem: github-actions open-pull-requests-limit: 1 + commit-message: { prefix: chore(deps) } directory: '/' schedule: - day: 'sunday' - interval: 'weekly' - groups: - github-actions: - patterns: ['*'] + day: sunday + interval: weekly + timezone: Europe/Berlin + cooldown: + default-days: 1 + include: [ '*' ] - - package-ecosystem: 'gomod' + - package-ecosystem: gomod open-pull-requests-limit: 1 - directory: '/' + commit-message: { prefix: chore(deps) } + directories: [ '**/*' ] schedule: - day: 'sunday' - interval: 'weekly' + day: sunday + interval: weekly + timezone: Europe/Berlin groups: - gomod-security: + security: applies-to: security-updates - update-types: ['minor', 'patch'] - patterns: ['*'] - gomod-update: + update-types: [ minor, patch ] + patterns: [ '*' ] + updates: applies-to: version-updates - update-types: ['minor', 'patch'] - patterns: ['*'] + update-types: [ minor, patch ] + patterns: [ '*' ] ignore: - - dependency-name: "*" - update-types: ["version-update:semver-major"] + - dependency-name: '*' + update-types: [ 'version-update:semver-major' ] + cooldown: + default-days: 1 + semver-major-days: 14 + semver-minor-days: 7 + semver-patch-days: 1 + include: [ '*' ]