From aea7dfdf4896ef262726d3d471b6109346d968d4 Mon Sep 17 00:00:00 2001 From: Alexey Gulev Date: Tue, 24 May 2022 19:00:00 +0200 Subject: [PATCH] Add Microsoft Java 11.0.15 11.0.15 is LTS version. It's important to have it in the list. Fix https://github.com/actions/setup-java/issues/329 --- src/distributions/microsoft/installer.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/distributions/microsoft/installer.ts b/src/distributions/microsoft/installer.ts index 147c543f..672b9679 100644 --- a/src/distributions/microsoft/installer.ts +++ b/src/distributions/microsoft/installer.ts @@ -93,6 +93,9 @@ export class MicrosoftDistributions extends JavaBase { jdkVersions.push({ version: [11, 0, 13, 8, 1] }); + jdkVersions.push({ + version: [11, 0, 15] + }); } return jdkVersions;