diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml deleted file mode 100644 index f15ea04..0000000 --- a/.github/dependabot.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file - -version: 2 -updates: - - package-ecosystem: "github-actions" # See documentation for possible values - directories: # Location of package manifests - - "/" - schedule: - interval: "daily" - assignees: - - "lishaduck" - groups: - github: - patterns: - - "actions/*" - - - package-ecosystem: "pub" # See documentation for possible values - directories: # Location of package manifests - - "/packages/*" - schedule: - interval: "daily" - assignees: - - "lishaduck" diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..84430e4 --- /dev/null +++ b/renovate.json @@ -0,0 +1,15 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:best-practices"], + "assigneesFromCodeOwners": true, + "labels": ["dependencies"], + "rangeStrategy": "bump", + "prHourlyLimit": 0, + "packageRules": [ + { + "groupName": "github-actions", + "matchManagers": ["github-actions"], + "matchPackageNames": ["actions/**"] + } + ] +}