mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 14:36:25 +00:00
fix(presets): apply NodeJS docker workaround for private registries (#32220)
This commit is contained in:
parent
813eb88400
commit
9faae86ff9
1 changed files with 7 additions and 1 deletions
|
@ -235,7 +235,13 @@ export const presets: Record<string, Preset> = {
|
||||||
packageRules: [
|
packageRules: [
|
||||||
{
|
{
|
||||||
matchDatasources: ['docker'],
|
matchDatasources: ['docker'],
|
||||||
matchDepNames: ['node'],
|
// copied from https://github.com/renovatebot/renovate/blob/a471762e137619c06e73a678d6b63ca984da7dba/lib/config/presets/internal/group.ts#L351
|
||||||
|
matchPackageNames: [
|
||||||
|
'/(?:^|/)node$/', // node or ends with "/node, except those below"
|
||||||
|
'!calico/node',
|
||||||
|
'!docker.io/calico/node',
|
||||||
|
'!kindest/node',
|
||||||
|
],
|
||||||
versionCompatibility: '^(?<version>[^-]+)(?<compatibility>-.*)?$',
|
versionCompatibility: '^(?<version>[^-]+)(?<compatibility>-.*)?$',
|
||||||
versioning: 'node',
|
versioning: 'node',
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue