diff --git a/src/distributions/oracle/installer.ts b/src/distributions/oracle/installer.ts index ec0ab21..72a92fb 100644 --- a/src/distributions/oracle/installer.ts +++ b/src/distributions/oracle/installer.ts @@ -88,8 +88,8 @@ export class OracleDistribution extends JavaBase { `${ORACLE_DL_BASE}/${major}/archive/jdk-${range}_${platform}-${arch}_bin.${extension}` ); - if (parseInt(major) < 17) { - throw new Error('Oracle JDK is only supported for JDK 17 and later'); + if (parseInt(major) < 21) { + throw new Error('Oracle JDK is only supported for JDK 21 and later'); } for (const url of possibleUrls) {