diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index ae619955..00000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- -version: 2 -updates: - - package-ecosystem: "gomod" - directory: / - schedule: - interval: "weekly" - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 00000000..ee821f02 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,21 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended", + ":dependencyDashboard", + ":gomod" + ], + "postUpdateOptions": [ + "gomodUpdateImportPaths", + "gomodTidy1.17", + "gomodVendor" + ], + "prConcurrentLimit": 0, + "prHourlyLimit": 0, + "packageRules": [ + { + "matchUpdateTypes": ["minor", "patch"], + "automerge": true + } + ] +}