diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 2fccaad..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,10 +0,0 @@ -version: 2 -updates: - - package-ecosystem: gomod - directory: / - schedule: - interval: daily - - package-ecosystem: github-actions - directory: / - schedule: - interval: daily diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 0000000..843b2ee --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,32 @@ +{ + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: [ + 'config:recommended', + 'github>stackitcloud/ske-ci-infra//config/renovate/ske.json5', + ], + additionalReviewers: [ + 'kumm-kai', + 'dergeberl', + ], + packageRules: [ + { + matchManagers: [ + 'gomod', + ], + matchUpdateTypes: [ + 'patch', + 'digest', + ], + automerge: true, + }, + { + groupName: 'kubernetes', + matchDatasources: [ + 'gomod', + ], + matchPackageNames: [ + '/^k8s.io/', + ], + }, + ], +}