From c18ccf52328550c709a16d8c3413b8f862ec74fa Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 16:46:48 +0000 Subject: [PATCH] chore: Switch from dependabot to renovate This allows much better configuration and customization and will keep our release branches up2date, too. --- .github/dependabot.yml | 11 ----------- .github/renovate.json | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 11 deletions(-) delete mode 100644 .github/dependabot.yml create mode 100644 .github/renovate.json diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 71c6c1df52..0000000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,11 +0,0 @@ -version: 2 -updates: - - package-ecosystem: github-actions - directory: / - schedule: - interval: weekly - - - package-ecosystem: github-actions - directory: /.github/actions/setup-nix - schedule: - interval: weekly diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000000..b7ba389e34 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,16 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:best-practices" + ], + "baseBranches": [ + "main", + "/^v[0-9]+/" + ], + "packageRules": [ + { + "matchBaseBranches": [ "/^v[0-9]+/" ], + "groupName": "all dependencies" + } + ] +}