Skip to content
Snippets Groups Projects
Unverified Commit 8ff8669a authored by Sergei Zharinov's avatar Sergei Zharinov Committed by GitHub
Browse files

fix(maven): Add workaround for ancient commons-cli version (#7780)

parent 1d15279d
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,10 @@ export const presets: Record<string, Preset> = { ...@@ -5,7 +5,10 @@ export const presets: Record<string, Preset> = {
description: [ description: [
'A collection of workarounds for known problems with packages', 'A collection of workarounds for known problems with packages',
], ],
extends: ['workarounds:unstableV2SetupNodeActions'], extends: [
'workarounds:unstableV2SetupNodeActions',
'workarounds:mavenCommonsCliAncientVersion',
],
}, },
unstableV2SetupNodeActions: { unstableV2SetupNodeActions: {
description: 'Ignore wrongly tagged actions/setup-node v2 releases', description: 'Ignore wrongly tagged actions/setup-node v2 releases',
...@@ -17,4 +20,13 @@ export const presets: Record<string, Preset> = { ...@@ -17,4 +20,13 @@ export const presets: Record<string, Preset> = {
}, },
], ],
}, },
mavenCommonsCliAncientVersion: {
packageRules: [
{
datasources: ['maven'],
packageNames: ['commons-cli:commons-cli'],
allowedVersions: '!/20040117.000000/',
},
],
},
}; };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment