2021-08-06 12:12:36 +02:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
|
import * as tc from '@actions/tool-cache';
|
|
|
|
|
|
|
|
|
|
import fs from 'fs';
|
|
|
|
|
import path from 'path';
|
|
|
|
|
import semver from 'semver';
|
|
|
|
|
|
2023-03-09 14:49:35 +02:00
|
|
|
import {JavaBase} from '../base-installer';
|
|
|
|
|
import {ITemurinAvailableVersions} from './models';
|
|
|
|
|
import {
|
|
|
|
|
JavaDownloadRelease,
|
|
|
|
|
JavaInstallerOptions,
|
|
|
|
|
JavaInstallerResults
|
|
|
|
|
} from '../base-models';
|
|
|
|
|
import {
|
|
|
|
|
extractJdkFile,
|
Implement pagination with link headers for Adoptium based apis (#1014)
* Use Link headers for Adoptium pagination
* Fix nullable pagination URL types and rebuild dist
* Add 1000-page safeguard for JetBrains pagination
* Adjust plan for pagination safeguard scope
* Move pagination safeguard to non-JetBrains installers
* Add 1000-page safeguard to Adopt Temurin and Semeru pagination
* Fix Prettier formatting in adopt, semeru, and temurin installer files
* Fix CI audit failure by updating vulnerable transitive deps
* Address PR review: RFC-compliant Link parsing, SSRF validation, centralized constant
- Make getNextPageUrlFromLinkHeader RFC 8288 compliant by splitting
link-values and checking for rel=next anywhere in the parameters,
not just as the first parameter after the semicolon.
- Add validatePaginationUrl utility to reject pagination URLs that
point to unexpected origins (SSRF mitigation).
- Centralize MAX_PAGINATION_PAGES in util.ts instead of duplicating
across Adopt, Semeru, and Temurin installers.
- Add tests for rel not being the first parameter, and for URL
origin validation.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Address code review feedback on pagination implementation
- Tighten rel regex with word boundary to prevent false positives
(e.g., rel="nextsomething" no longer matches).
- Use parsed.origin comparison in validatePaginationUrl to correctly
handle explicit default ports (e.g., :443 for HTTPS).
- Fix pagination safeguard tests to use same-origin URLs so they
actually exercise the 1000-page limit instead of being rejected
by origin validation on the first request.
- Add test for rel="nextsomething" not matching.
- Add test for explicit default port acceptance.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Fix prettier formatting in util.test.ts
* Rebuild dist/ to fix check-dist CI failure
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-06-12 11:50:16 +01:00
|
|
|
getNextPageUrlFromLinkHeader,
|
2023-03-09 14:49:35 +02:00
|
|
|
getDownloadArchiveExtension,
|
2024-10-11 03:02:25 +05:30
|
|
|
isVersionSatisfies,
|
Implement pagination with link headers for Adoptium based apis (#1014)
* Use Link headers for Adoptium pagination
* Fix nullable pagination URL types and rebuild dist
* Add 1000-page safeguard for JetBrains pagination
* Adjust plan for pagination safeguard scope
* Move pagination safeguard to non-JetBrains installers
* Add 1000-page safeguard to Adopt Temurin and Semeru pagination
* Fix Prettier formatting in adopt, semeru, and temurin installer files
* Fix CI audit failure by updating vulnerable transitive deps
* Address PR review: RFC-compliant Link parsing, SSRF validation, centralized constant
- Make getNextPageUrlFromLinkHeader RFC 8288 compliant by splitting
link-values and checking for rel=next anywhere in the parameters,
not just as the first parameter after the semicolon.
- Add validatePaginationUrl utility to reject pagination URLs that
point to unexpected origins (SSRF mitigation).
- Centralize MAX_PAGINATION_PAGES in util.ts instead of duplicating
across Adopt, Semeru, and Temurin installers.
- Add tests for rel not being the first parameter, and for URL
origin validation.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Address code review feedback on pagination implementation
- Tighten rel regex with word boundary to prevent false positives
(e.g., rel="nextsomething" no longer matches).
- Use parsed.origin comparison in validatePaginationUrl to correctly
handle explicit default ports (e.g., :443 for HTTPS).
- Fix pagination safeguard tests to use same-origin URLs so they
actually exercise the 1000-page limit instead of being rejected
by origin validation on the first request.
- Add test for rel="nextsomething" not matching.
- Add test for explicit default port acceptance.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Fix prettier formatting in util.test.ts
* Rebuild dist/ to fix check-dist CI failure
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-06-12 11:50:16 +01:00
|
|
|
renameWinArchive,
|
|
|
|
|
MAX_PAGINATION_PAGES,
|
|
|
|
|
validatePaginationUrl
|
2023-03-09 14:49:35 +02:00
|
|
|
} from '../../util';
|
2021-08-06 12:12:36 +02:00
|
|
|
|
|
|
|
|
export enum TemurinImplementation {
|
|
|
|
|
Hotspot = 'Hotspot'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export class TemurinDistribution extends JavaBase {
|
|
|
|
|
constructor(
|
|
|
|
|
installerOptions: JavaInstallerOptions,
|
|
|
|
|
private readonly jvmImpl: TemurinImplementation
|
|
|
|
|
) {
|
|
|
|
|
super(`Temurin-${jvmImpl}`, installerOptions);
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-12 16:30:59 +01:00
|
|
|
/**
|
|
|
|
|
* @internal For cross-distribution reuse only. Not intended as a public API.
|
|
|
|
|
*/
|
|
|
|
|
public async findPackageForDownload(
|
2023-03-09 14:49:35 +02:00
|
|
|
version: string
|
|
|
|
|
): Promise<JavaDownloadRelease> {
|
2021-08-06 12:12:36 +02:00
|
|
|
const availableVersionsRaw = await this.getAvailableVersions();
|
|
|
|
|
const availableVersionsWithBinaries = availableVersionsRaw
|
|
|
|
|
.filter(item => item.binaries.length > 0)
|
|
|
|
|
.map(item => {
|
|
|
|
|
// normalize 17.0.0-beta+33.0.202107301459 to 17.0.0+33.0.202107301459 for earlier access versions
|
|
|
|
|
const formattedVersion = this.stable
|
|
|
|
|
? item.version_data.semver
|
|
|
|
|
: item.version_data.semver.replace('-beta+', '+');
|
|
|
|
|
return {
|
|
|
|
|
version: formattedVersion,
|
|
|
|
|
url: item.binaries[0].package.link
|
|
|
|
|
} as JavaDownloadRelease;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const satisfiedVersions = availableVersionsWithBinaries
|
|
|
|
|
.filter(item => isVersionSatisfies(version, item.version))
|
|
|
|
|
.sort((a, b) => {
|
|
|
|
|
return -semver.compareBuild(a.version, b.version);
|
|
|
|
|
});
|
|
|
|
|
|
2023-03-09 14:49:35 +02:00
|
|
|
const resolvedFullVersion =
|
|
|
|
|
satisfiedVersions.length > 0 ? satisfiedVersions[0] : null;
|
2021-08-06 12:12:36 +02:00
|
|
|
if (!resolvedFullVersion) {
|
2026-04-13 23:14:45 +05:30
|
|
|
const availableVersionStrings = availableVersionsWithBinaries.map(
|
|
|
|
|
item => item.version
|
2021-08-06 12:12:36 +02:00
|
|
|
);
|
2026-04-13 23:14:45 +05:30
|
|
|
throw this.createVersionNotFoundError(version, availableVersionStrings);
|
2021-08-06 12:12:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return resolvedFullVersion;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-09 14:49:35 +02:00
|
|
|
protected async downloadTool(
|
|
|
|
|
javaRelease: JavaDownloadRelease
|
|
|
|
|
): Promise<JavaInstallerResults> {
|
2021-08-06 12:12:36 +02:00
|
|
|
core.info(
|
|
|
|
|
`Downloading Java ${javaRelease.version} (${this.distribution}) from ${javaRelease.url} ...`
|
|
|
|
|
);
|
2024-10-11 03:02:25 +05:30
|
|
|
let javaArchivePath = await tc.downloadTool(javaRelease.url);
|
2021-08-06 12:12:36 +02:00
|
|
|
|
|
|
|
|
core.info(`Extracting Java archive...`);
|
2023-03-09 14:49:35 +02:00
|
|
|
const extension = getDownloadArchiveExtension();
|
2024-10-11 03:02:25 +05:30
|
|
|
if (process.platform === 'win32') {
|
|
|
|
|
javaArchivePath = renameWinArchive(javaArchivePath);
|
|
|
|
|
}
|
2023-03-09 14:49:35 +02:00
|
|
|
const extractedJavaPath = await extractJdkFile(javaArchivePath, extension);
|
2021-08-06 12:12:36 +02:00
|
|
|
|
|
|
|
|
const archiveName = fs.readdirSync(extractedJavaPath)[0];
|
|
|
|
|
const archivePath = path.join(extractedJavaPath, archiveName);
|
|
|
|
|
const version = this.getToolcacheVersionName(javaRelease.version);
|
|
|
|
|
|
2023-03-09 14:49:35 +02:00
|
|
|
const javaPath = await tc.cacheDir(
|
|
|
|
|
archivePath,
|
|
|
|
|
this.toolcacheFolderName,
|
|
|
|
|
version,
|
|
|
|
|
this.architecture
|
|
|
|
|
);
|
2021-08-06 12:12:36 +02:00
|
|
|
|
2023-03-09 14:49:35 +02:00
|
|
|
return {version: javaRelease.version, path: javaPath};
|
2021-08-06 12:12:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected get toolcacheFolderName(): string {
|
|
|
|
|
return super.toolcacheFolderName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async getAvailableVersions(): Promise<ITemurinAvailableVersions[]> {
|
|
|
|
|
const platform = this.getPlatformOption();
|
2022-10-10 17:47:17 -06:00
|
|
|
const arch = this.distributionArchitecture();
|
2021-08-06 12:12:36 +02:00
|
|
|
const imageType = this.packageType;
|
|
|
|
|
const versionRange = encodeURI('[1.0,100.0]'); // retrieve all available versions
|
|
|
|
|
const releaseType = this.stable ? 'ga' : 'ea';
|
|
|
|
|
|
2022-09-08 15:26:54 +02:00
|
|
|
if (core.isDebug()) {
|
2023-03-09 14:49:35 +02:00
|
|
|
console.time('Retrieving available versions for Temurin took'); // eslint-disable-line no-console
|
2022-09-08 15:26:54 +02:00
|
|
|
}
|
2021-08-06 12:12:36 +02:00
|
|
|
|
|
|
|
|
const baseRequestArguments = [
|
|
|
|
|
`project=jdk`,
|
|
|
|
|
'vendor=adoptium',
|
|
|
|
|
`heap_size=normal`,
|
|
|
|
|
'sort_method=DEFAULT',
|
|
|
|
|
'sort_order=DESC',
|
|
|
|
|
`os=${platform}`,
|
|
|
|
|
`architecture=${arch}`,
|
|
|
|
|
`image_type=${imageType}`,
|
|
|
|
|
`release_type=${releaseType}`,
|
|
|
|
|
`jvm_impl=${this.jvmImpl.toLowerCase()}`
|
|
|
|
|
].join('&');
|
|
|
|
|
|
Implement pagination with link headers for Adoptium based apis (#1014)
* Use Link headers for Adoptium pagination
* Fix nullable pagination URL types and rebuild dist
* Add 1000-page safeguard for JetBrains pagination
* Adjust plan for pagination safeguard scope
* Move pagination safeguard to non-JetBrains installers
* Add 1000-page safeguard to Adopt Temurin and Semeru pagination
* Fix Prettier formatting in adopt, semeru, and temurin installer files
* Fix CI audit failure by updating vulnerable transitive deps
* Address PR review: RFC-compliant Link parsing, SSRF validation, centralized constant
- Make getNextPageUrlFromLinkHeader RFC 8288 compliant by splitting
link-values and checking for rel=next anywhere in the parameters,
not just as the first parameter after the semicolon.
- Add validatePaginationUrl utility to reject pagination URLs that
point to unexpected origins (SSRF mitigation).
- Centralize MAX_PAGINATION_PAGES in util.ts instead of duplicating
across Adopt, Semeru, and Temurin installers.
- Add tests for rel not being the first parameter, and for URL
origin validation.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Address code review feedback on pagination implementation
- Tighten rel regex with word boundary to prevent false positives
(e.g., rel="nextsomething" no longer matches).
- Use parsed.origin comparison in validatePaginationUrl to correctly
handle explicit default ports (e.g., :443 for HTTPS).
- Fix pagination safeguard tests to use same-origin URLs so they
actually exercise the 1000-page limit instead of being rejected
by origin validation on the first request.
- Add test for rel="nextsomething" not matching.
- Add test for explicit default port acceptance.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Fix prettier formatting in util.test.ts
* Rebuild dist/ to fix check-dist CI failure
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-06-12 11:50:16 +01:00
|
|
|
const requestArguments = `${baseRequestArguments}&page_size=20&page=0`;
|
|
|
|
|
let availableVersionsUrl: string | null =
|
|
|
|
|
`https://api.adoptium.net/v3/assets/version/${versionRange}?${requestArguments}`;
|
2021-08-06 12:12:36 +02:00
|
|
|
const availableVersions: ITemurinAvailableVersions[] = [];
|
Implement pagination with link headers for Adoptium based apis (#1014)
* Use Link headers for Adoptium pagination
* Fix nullable pagination URL types and rebuild dist
* Add 1000-page safeguard for JetBrains pagination
* Adjust plan for pagination safeguard scope
* Move pagination safeguard to non-JetBrains installers
* Add 1000-page safeguard to Adopt Temurin and Semeru pagination
* Fix Prettier formatting in adopt, semeru, and temurin installer files
* Fix CI audit failure by updating vulnerable transitive deps
* Address PR review: RFC-compliant Link parsing, SSRF validation, centralized constant
- Make getNextPageUrlFromLinkHeader RFC 8288 compliant by splitting
link-values and checking for rel=next anywhere in the parameters,
not just as the first parameter after the semicolon.
- Add validatePaginationUrl utility to reject pagination URLs that
point to unexpected origins (SSRF mitigation).
- Centralize MAX_PAGINATION_PAGES in util.ts instead of duplicating
across Adopt, Semeru, and Temurin installers.
- Add tests for rel not being the first parameter, and for URL
origin validation.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Address code review feedback on pagination implementation
- Tighten rel regex with word boundary to prevent false positives
(e.g., rel="nextsomething" no longer matches).
- Use parsed.origin comparison in validatePaginationUrl to correctly
handle explicit default ports (e.g., :443 for HTTPS).
- Fix pagination safeguard tests to use same-origin URLs so they
actually exercise the 1000-page limit instead of being rejected
by origin validation on the first request.
- Add test for rel="nextsomething" not matching.
- Add test for explicit default port acceptance.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Fix prettier formatting in util.test.ts
* Rebuild dist/ to fix check-dist CI failure
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-06-12 11:50:16 +01:00
|
|
|
let pageCount = 0;
|
|
|
|
|
if (core.isDebug()) {
|
|
|
|
|
core.debug(`Gathering available versions from '${availableVersionsUrl}'`);
|
|
|
|
|
}
|
2021-08-06 12:12:36 +02:00
|
|
|
|
Implement pagination with link headers for Adoptium based apis (#1014)
* Use Link headers for Adoptium pagination
* Fix nullable pagination URL types and rebuild dist
* Add 1000-page safeguard for JetBrains pagination
* Adjust plan for pagination safeguard scope
* Move pagination safeguard to non-JetBrains installers
* Add 1000-page safeguard to Adopt Temurin and Semeru pagination
* Fix Prettier formatting in adopt, semeru, and temurin installer files
* Fix CI audit failure by updating vulnerable transitive deps
* Address PR review: RFC-compliant Link parsing, SSRF validation, centralized constant
- Make getNextPageUrlFromLinkHeader RFC 8288 compliant by splitting
link-values and checking for rel=next anywhere in the parameters,
not just as the first parameter after the semicolon.
- Add validatePaginationUrl utility to reject pagination URLs that
point to unexpected origins (SSRF mitigation).
- Centralize MAX_PAGINATION_PAGES in util.ts instead of duplicating
across Adopt, Semeru, and Temurin installers.
- Add tests for rel not being the first parameter, and for URL
origin validation.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Address code review feedback on pagination implementation
- Tighten rel regex with word boundary to prevent false positives
(e.g., rel="nextsomething" no longer matches).
- Use parsed.origin comparison in validatePaginationUrl to correctly
handle explicit default ports (e.g., :443 for HTTPS).
- Fix pagination safeguard tests to use same-origin URLs so they
actually exercise the 1000-page limit instead of being rejected
by origin validation on the first request.
- Add test for rel="nextsomething" not matching.
- Add test for explicit default port acceptance.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Fix prettier formatting in util.test.ts
* Rebuild dist/ to fix check-dist CI failure
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-06-12 11:50:16 +01:00
|
|
|
while (availableVersionsUrl) {
|
|
|
|
|
pageCount++;
|
|
|
|
|
const response =
|
2023-03-09 14:49:35 +02:00
|
|
|
await this.http.getJson<ITemurinAvailableVersions[]>(
|
|
|
|
|
availableVersionsUrl
|
Implement pagination with link headers for Adoptium based apis (#1014)
* Use Link headers for Adoptium pagination
* Fix nullable pagination URL types and rebuild dist
* Add 1000-page safeguard for JetBrains pagination
* Adjust plan for pagination safeguard scope
* Move pagination safeguard to non-JetBrains installers
* Add 1000-page safeguard to Adopt Temurin and Semeru pagination
* Fix Prettier formatting in adopt, semeru, and temurin installer files
* Fix CI audit failure by updating vulnerable transitive deps
* Address PR review: RFC-compliant Link parsing, SSRF validation, centralized constant
- Make getNextPageUrlFromLinkHeader RFC 8288 compliant by splitting
link-values and checking for rel=next anywhere in the parameters,
not just as the first parameter after the semicolon.
- Add validatePaginationUrl utility to reject pagination URLs that
point to unexpected origins (SSRF mitigation).
- Centralize MAX_PAGINATION_PAGES in util.ts instead of duplicating
across Adopt, Semeru, and Temurin installers.
- Add tests for rel not being the first parameter, and for URL
origin validation.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Address code review feedback on pagination implementation
- Tighten rel regex with word boundary to prevent false positives
(e.g., rel="nextsomething" no longer matches).
- Use parsed.origin comparison in validatePaginationUrl to correctly
handle explicit default ports (e.g., :443 for HTTPS).
- Fix pagination safeguard tests to use same-origin URLs so they
actually exercise the 1000-page limit instead of being rejected
by origin validation on the first request.
- Add test for rel="nextsomething" not matching.
- Add test for explicit default port acceptance.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Fix prettier formatting in util.test.ts
* Rebuild dist/ to fix check-dist CI failure
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-06-12 11:50:16 +01:00
|
|
|
);
|
|
|
|
|
const paginationPage = response.result;
|
|
|
|
|
const nextUrl = getNextPageUrlFromLinkHeader(response.headers);
|
|
|
|
|
if (
|
|
|
|
|
nextUrl &&
|
|
|
|
|
!validatePaginationUrl(nextUrl, 'https://api.adoptium.net')
|
|
|
|
|
) {
|
|
|
|
|
core.warning(
|
|
|
|
|
`Ignoring pagination link with unexpected origin: ${nextUrl}`
|
|
|
|
|
);
|
|
|
|
|
availableVersionsUrl = null;
|
|
|
|
|
} else {
|
|
|
|
|
availableVersionsUrl = nextUrl;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-06 12:12:36 +02:00
|
|
|
if (paginationPage === null || paginationPage.length === 0) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
availableVersions.push(...paginationPage);
|
Implement pagination with link headers for Adoptium based apis (#1014)
* Use Link headers for Adoptium pagination
* Fix nullable pagination URL types and rebuild dist
* Add 1000-page safeguard for JetBrains pagination
* Adjust plan for pagination safeguard scope
* Move pagination safeguard to non-JetBrains installers
* Add 1000-page safeguard to Adopt Temurin and Semeru pagination
* Fix Prettier formatting in adopt, semeru, and temurin installer files
* Fix CI audit failure by updating vulnerable transitive deps
* Address PR review: RFC-compliant Link parsing, SSRF validation, centralized constant
- Make getNextPageUrlFromLinkHeader RFC 8288 compliant by splitting
link-values and checking for rel=next anywhere in the parameters,
not just as the first parameter after the semicolon.
- Add validatePaginationUrl utility to reject pagination URLs that
point to unexpected origins (SSRF mitigation).
- Centralize MAX_PAGINATION_PAGES in util.ts instead of duplicating
across Adopt, Semeru, and Temurin installers.
- Add tests for rel not being the first parameter, and for URL
origin validation.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Address code review feedback on pagination implementation
- Tighten rel regex with word boundary to prevent false positives
(e.g., rel="nextsomething" no longer matches).
- Use parsed.origin comparison in validatePaginationUrl to correctly
handle explicit default ports (e.g., :443 for HTTPS).
- Fix pagination safeguard tests to use same-origin URLs so they
actually exercise the 1000-page limit instead of being rejected
by origin validation on the first request.
- Add test for rel="nextsomething" not matching.
- Add test for explicit default port acceptance.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Fix prettier formatting in util.test.ts
* Rebuild dist/ to fix check-dist CI failure
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-06-12 11:50:16 +01:00
|
|
|
|
|
|
|
|
if (pageCount >= MAX_PAGINATION_PAGES) {
|
|
|
|
|
core.warning(
|
|
|
|
|
`Reached pagination safeguard limit (${MAX_PAGINATION_PAGES} pages) while listing Temurin releases.`
|
|
|
|
|
);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2021-08-06 12:12:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (core.isDebug()) {
|
|
|
|
|
core.startGroup('Print information about available versions');
|
2023-03-09 14:49:35 +02:00
|
|
|
console.timeEnd('Retrieving available versions for Temurin took'); // eslint-disable-line no-console
|
|
|
|
|
core.debug(`Available versions: [${availableVersions.length}]`);
|
|
|
|
|
core.debug(
|
|
|
|
|
availableVersions.map(item => item.version_data.semver).join(', ')
|
|
|
|
|
);
|
2021-08-06 12:12:36 +02:00
|
|
|
core.endGroup();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return availableVersions;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private getPlatformOption(): string {
|
|
|
|
|
// Adoptium has own platform names so need to map them
|
|
|
|
|
switch (process.platform) {
|
|
|
|
|
case 'darwin':
|
|
|
|
|
return 'mac';
|
|
|
|
|
case 'win32':
|
|
|
|
|
return 'windows';
|
2026-06-12 09:18:56 +01:00
|
|
|
case 'linux':
|
|
|
|
|
if (fs.existsSync('/etc/alpine-release')) {
|
|
|
|
|
return 'alpine-linux';
|
|
|
|
|
}
|
|
|
|
|
return 'linux';
|
2021-08-06 12:12:36 +02:00
|
|
|
default:
|
|
|
|
|
return process.platform;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|