Skip to content

Commit

Permalink
fix(presets/workarounds): update java LTS allowed versions expression (
Browse files Browse the repository at this point in the history
  • Loading branch information
setchy committed Dec 30, 2022
1 parent 80d53a1 commit fb99f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config/presets/internal/workarounds.ts
Expand Up @@ -79,7 +79,7 @@ export const presets: Record<string, Preset> = {
description: 'Limit Java runtime versions to LTS releases',
packageRules: [
{
allowedVersions: '/^(?:8|11|17|21|25|29)(?:\\.|$)/',
allowedVersions: '/^(?:8|11|17)(?:\\.|-|$)/',
description:
'Limit Java runtime versions to LTS releases. To receive all major releases add `workarounds:javaLTSVersions` to the `ignorePresets` array.',
matchDatasources: ['docker', 'adoptium-java'],
Expand Down

0 comments on commit fb99f4e

Please sign in to comment.