mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
feat(workarounds): add node docker versioning template (#26059)
This commit is contained in:
parent
c11037b299
commit
e9ee32e84f
1 changed files with 8 additions and 0 deletions
|
@ -13,6 +13,7 @@ export const presets: Record<string, Preset> = {
|
||||||
'workarounds:ignoreWeb3jCoreWithOldReleaseTimestamp',
|
'workarounds:ignoreWeb3jCoreWithOldReleaseTimestamp',
|
||||||
'workarounds:ignoreHttp4sDigestMilestones',
|
'workarounds:ignoreHttp4sDigestMilestones',
|
||||||
'workarounds:typesNodeVersioning',
|
'workarounds:typesNodeVersioning',
|
||||||
|
'workarounds:nodeDockerVersioning',
|
||||||
'workarounds:reduceRepologyServerLoad',
|
'workarounds:reduceRepologyServerLoad',
|
||||||
'workarounds:doNotUpgradeFromAlpineStableToEdge',
|
'workarounds:doNotUpgradeFromAlpineStableToEdge',
|
||||||
'workarounds:supportRedHatImageVersion',
|
'workarounds:supportRedHatImageVersion',
|
||||||
|
@ -137,6 +138,13 @@ export const presets: Record<string, Preset> = {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
nodeDockerVersioning: {
|
||||||
|
description: 'Use node versioning for `node` docker images.',
|
||||||
|
matchDatasources: ['docker'],
|
||||||
|
matchPackageNames: ['node'],
|
||||||
|
versionCompatibility: '^(?<version>[^-]+)(?<compatibility>-.*)?$',
|
||||||
|
versioning: 'node',
|
||||||
|
},
|
||||||
reduceRepologyServerLoad: {
|
reduceRepologyServerLoad: {
|
||||||
description:
|
description:
|
||||||
'Limit requests to reduce load on Repology servers until we can fix this properly, see issue `#10133`.',
|
'Limit requests to reduce load on Repology servers until we can fix this properly, see issue `#10133`.',
|
||||||
|
|
Loading…
Reference in a new issue