From 01e669854bb4044afcf22144a1b6e3c4cbfe92b5 Mon Sep 17 00:00:00 2001 From: Pavel Boldyrev <627562+bpg@users.noreply.github.com> Date: Mon, 15 Jan 2024 22:20:21 -0500 Subject: [PATCH] chore(ci): switch to renovate (#891) Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com> --- .github/dependabot.yml | 33 --------------------------------- .github/renovate.json5 | 7 +++++++ 2 files changed, 7 insertions(+), 33 deletions(-) delete mode 100644 .github/dependabot.yml create mode 100644 .github/renovate.json5 diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index f89594c4..00000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,33 +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://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - -version: 2 -updates: - # Maintain dependencies for Go - - package-ecosystem: "gomod" - directory: "/" - schedule: - interval: "weekly" - commit-message: - prefix: chore - include: scope - - # Maintain dependencies for build tools - - package-ecosystem: "gomod" - directory: "/tools" - schedule: - interval: "weekly" - commit-message: - prefix: chore - include: scope - - # Maintain dependencies for GitHub Actions - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" - commit-message: - prefix: chore - include: scope diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 00000000..9e4cb1bf --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,7 @@ +{ + $schema: "https://docs.renovatebot.com/renovate-schema.json", + extends: [ + "github>bpg/renovate-config", + "github>bpg/renovate-config:automerge-github-actions", + ], +}