chore(renovate): move out of deprecated options (#8055)

This commit is contained in:
Mathieu Kniewallner 2024-10-09 21:48:19 +02:00 committed by GitHub
parent c07000718a
commit 36fedf7ac7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 5 deletions

View File

@ -12,7 +12,7 @@
semanticCommits: "disabled", semanticCommits: "disabled",
separateMajorMinor: false, separateMajorMinor: false,
prHourlyLimit: 10, prHourlyLimit: 10,
enabledManagers: ["github-actions", "pre-commit", "cargo", "regex"], enabledManagers: ["github-actions", "pre-commit", "cargo", "custom.regex"],
cargo: { cargo: {
// See https://docs.renovatebot.com/configuration-options/#rangestrategy // See https://docs.renovatebot.com/configuration-options/#rangestrategy
rangeStrategy: "update-lockfile", rangeStrategy: "update-lockfile",
@ -25,13 +25,13 @@
{ {
// Disable updates of `zip-rs`; intentionally pinned for now due to ownership change // Disable updates of `zip-rs`; intentionally pinned for now due to ownership change
// See: https://github.com/astral-sh/uv/issues/3642 // See: https://github.com/astral-sh/uv/issues/3642
matchPackagePatterns: ["zip"], matchPackageNames: ["/zip/"],
matchManagers: ["cargo"], matchManagers: ["cargo"],
enabled: false, enabled: false,
}, },
{ {
// Create dedicated branches to update references to dependencies in the documentation. // Create dedicated branches to update references to dependencies in the documentation.
matchPaths: ["docs/**/*.md"], matchFileNames: ["docs/**/*.md"],
commitMessageTopic: "documentation references to {{{depName}}}", commitMessageTopic: "documentation references to {{{depName}}}",
semanticCommitType: "docs", semanticCommitType: "docs",
semanticCommitScope: null, semanticCommitScope: null,
@ -42,7 +42,7 @@
groupName: "Artifact GitHub Actions dependencies", groupName: "Artifact GitHub Actions dependencies",
matchManagers: ["github-actions"], matchManagers: ["github-actions"],
matchDatasources: ["gitea-tags", "github-tags"], matchDatasources: ["gitea-tags", "github-tags"],
matchPackagePatterns: ["actions/.*-artifact"], matchPackageNames: ["/actions/.*-artifact/"],
description: "Weekly update of artifact-related GitHub Actions dependencies", 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. // of the PEP 440 and PEP 508 crates, which we vendored and forked.
groupName: "pyo3", groupName: "pyo3",
matchManagers: ["cargo"], matchManagers: ["cargo"],
matchPackagePatterns: ["pyo3"], matchPackageNames: ["/pyo3/"],
description: "Weekly update of pyo3 dependencies", description: "Weekly update of pyo3 dependencies",
enabled: false, enabled: false,
}, },