diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index c590bee0..00000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,10 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "pip" # See documentation for possible values - directory: "/" # Location of package manifests - schedule: - interval: "monthly" - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "monthly" diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 00000000..2f923c94 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,22 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "lockFileMaintenance": { + "enabled": true + }, + "packageRules": [ + { + "groupName": "all non-major dependencies", + "groupSlug": "all-nonmajor", + "matchPackageNames": ["*"], + "matchUpdateTypes": ["minor", "patch", "pin"], + "automerge": true + }, + { + "matchUpdateTypes": ["major"], + "automerge": true + } + ], + "extends": [ + "config:recommended" + ] +}