We no longer need the tracing patches, so I've removed those and unpinned them in renovate. otel's jaeger propagator is deprecated too, so it's replaced with the builtin W3C TraceContext propagator
88 lines
3.3 KiB
JSON
88 lines
3.3 KiB
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": ["config:recommended", "replacements:all"],
|
|
"osvVulnerabilityAlerts": true,
|
|
"lockFileMaintenance": {
|
|
"enabled": true,
|
|
"schedule": ["at any time"]
|
|
},
|
|
"platformAutomerge": true,
|
|
"nix": {
|
|
"enabled": true
|
|
},
|
|
"pre-commit": {
|
|
"enabled": true
|
|
},
|
|
"labels": ["Dependencies", "Dependencies/Renovate"],
|
|
"ignoreDeps": [
|
|
"tikv-jemallocator",
|
|
"tikv-jemalloc-sys",
|
|
"tikv-jemalloc-ctl",
|
|
"rustyline-async",
|
|
"event-listener",
|
|
"async-channel",
|
|
"core_affinity",
|
|
"hyper-util"
|
|
],
|
|
"github-actions": {
|
|
"enabled": true,
|
|
"managerFilePatterns": [
|
|
"/(^|/)\\.forgejo/workflows/[^/]+\\.ya?ml$/",
|
|
"/(^|/)\\.forgejo/actions/[^/]+/action\\.ya?ml$/",
|
|
"/(^|/)\\.github/workflows/[^/]+\\.ya?ml$/",
|
|
"/(^|/)\\.github/actions/[^/]+/action\\.ya?ml$/"
|
|
]
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"description": "Batch patch-level Rust dependency updates",
|
|
"matchManagers": ["cargo"],
|
|
"matchUpdateTypes": ["patch"],
|
|
"groupName": "rust-patch-updates"
|
|
},
|
|
{
|
|
"description": "Limit concurrent Cargo PRs",
|
|
"matchManagers": ["cargo"],
|
|
"prConcurrentLimit": 5
|
|
},
|
|
{
|
|
"description": "Group Rust toolchain updates into a single PR",
|
|
"matchManagers": ["custom.regex"],
|
|
"matchPackageNames": ["rust", "rustc", "cargo"],
|
|
"groupName": "rust-toolchain"
|
|
},
|
|
{
|
|
"description": "Batch minor and patch GitHub Actions updates",
|
|
"matchManagers": ["github-actions"],
|
|
"matchUpdateTypes": ["minor", "patch"],
|
|
"groupName": "github-actions-non-major"
|
|
},
|
|
{
|
|
"description": "Pin forgejo artifact actions to prevent breaking changes",
|
|
"matchManagers": ["github-actions"],
|
|
"matchPackageNames": ["forgejo/upload-artifact", "forgejo/download-artifact"],
|
|
"enabled": false
|
|
},
|
|
{
|
|
"description": "Auto-merge renovatebot docker image updates",
|
|
"matchDatasources": ["docker"],
|
|
"matchPackageNames": ["ghcr.io/renovatebot/renovate"],
|
|
"automerge": true,
|
|
"automergeStrategy": "fast-forward",
|
|
"extends": ["schedule:earlyMondays"]
|
|
}
|
|
],
|
|
"customManagers": [
|
|
{
|
|
"customType": "regex",
|
|
"description": "Update _VERSION variables in Dockerfiles",
|
|
"managerFilePatterns": [
|
|
"/(^|/)([Dd]ocker|[Cc]ontainer)file[^/]*$/",
|
|
"/(^|/|\\.)([Dd]ocker|[Cc]ontainer)file$/"
|
|
],
|
|
"matchStrings": [
|
|
"# renovate: datasource=(?<datasource>[a-zA-Z0-9-._]+?) depName=(?<depName>[^\\s]+?)(?: (lookupName|packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[^\\s]+?))?(?: extractVersion=(?<extractVersion>[^\\s]+?))?(?: registryUrl=(?<registryUrl>[^\\s]+?))?\\s+(?:ENV\\s+|ARG\\s+)?[A-Za-z0-9_]+?_VERSION[ =][\"']?(?<currentValue>.+?)[\"']?\\s+(?:(?:ENV\\s+|ARG\\s+)?[A-Za-z0-9_]+?_CHECKSUM[ =][\"']?(?<currentDigest>.+?)[\"']?\\s)?"
|
|
]
|
|
}
|
|
]
|
|
}
|