From 36fedf7ac7fae2191de171ee9a46761ee999e79d Mon Sep 17 00:00:00 2001 From: Mathieu Kniewallner Date: Wed, 9 Oct 2024 21:48:19 +0200 Subject: [PATCH] chore(renovate): move out of deprecated options (#8055) --- .github/renovate.json5 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index f0cc4a760..f26f285c2 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -12,7 +12,7 @@ semanticCommits: "disabled", separateMajorMinor: false, prHourlyLimit: 10, - enabledManagers: ["github-actions", "pre-commit", "cargo", "regex"], + enabledManagers: ["github-actions", "pre-commit", "cargo", "custom.regex"], cargo: { // See https://docs.renovatebot.com/configuration-options/#rangestrategy rangeStrategy: "update-lockfile", @@ -25,13 +25,13 @@ { // Disable updates of `zip-rs`; intentionally pinned for now due to ownership change // See: https://github.com/astral-sh/uv/issues/3642 - matchPackagePatterns: ["zip"], + matchPackageNames: ["/zip/"], matchManagers: ["cargo"], enabled: false, }, { // Create dedicated branches to update references to dependencies in the documentation. - matchPaths: ["docs/**/*.md"], + matchFileNames: ["docs/**/*.md"], commitMessageTopic: "documentation references to {{{depName}}}", semanticCommitType: "docs", semanticCommitScope: null, @@ -42,7 +42,7 @@ groupName: "Artifact GitHub Actions dependencies", matchManagers: ["github-actions"], matchDatasources: ["gitea-tags", "github-tags"], - matchPackagePatterns: ["actions/.*-artifact"], + matchPackageNames: ["/actions/.*-artifact/"], description: "Weekly update of artifact-related GitHub Actions dependencies", }, { @@ -71,7 +71,7 @@ // of the PEP 440 and PEP 508 crates, which we vendored and forked. groupName: "pyo3", matchManagers: ["cargo"], - matchPackagePatterns: ["pyo3"], + matchPackageNames: ["/pyo3/"], description: "Weekly update of pyo3 dependencies", enabled: false, },