diff --git a/dist/setup/index.js b/dist/setup/index.js index 855880b76..fd2ca8099 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -13886,6 +13886,9 @@ class MicrosoftDistributions extends base_installer_1.JavaBase { if (this.architecture !== 'x64' && this.architecture !== 'aarch64') { throw new Error(`Unsupported architecture: ${this.architecture}`); } + if (!this.stable) { + throw new Error('Early access versions are not supported'); + } const availableVersionsRaw = yield this.getAvailableVersions(); const opts = this.getPlatformOption(); const availableVersions = availableVersionsRaw.map(item => ({ diff --git a/src/distributions/microsoft/installer.ts b/src/distributions/microsoft/installer.ts index 79fffe5ee..477cb62e3 100644 --- a/src/distributions/microsoft/installer.ts +++ b/src/distributions/microsoft/installer.ts @@ -40,6 +40,11 @@ export class MicrosoftDistributions extends JavaBase { if (this.architecture !== 'x64' && this.architecture !== 'aarch64') { throw new Error(`Unsupported architecture: ${this.architecture}`); } + + if (!this.stable) { + throw new Error('Early access versions are not supported'); + } + const availableVersionsRaw = await this.getAvailableVersions(); const opts = this.getPlatformOption();