mirror of
https://gitea.com/actions/setup-java.git
synced 2025-11-06 02:26:25 +08:00
* add support for dragonwell * fix: update logic of parsing json file, refactor code * build: rebuild action * chore: update error message * build: rebuild action * tests: fix unit tests, add e2e tests * chore: prettier, lint and rebuild solution * feat: add check for the package type, update unit tests * tests: update e2e tests * tests: remove excess entries from e2e tests * feat: update logic of getting json file * feat: add logic for backuping getting json * chore: update wordings * chore: fix typos, add additional logs * fix: fix review points * chore: rebuild solution * chore: update wordings * chore: refactor code --------- Co-authored-by: Ivan Zosimov <ivanzosimov@github.com> Co-authored-by: Ivan <98037481+IvanZosimov@users.noreply.github.com>
27 lines
529 B
TypeScript
27 lines
529 B
TypeScript
export interface IDragonwellAllVersions {
|
|
[major: string]: {
|
|
[jdk_version: string]: {
|
|
[os: string]: {
|
|
[arch: string]: {
|
|
[edition: string]: {
|
|
content_type: string;
|
|
sha256: string;
|
|
name: string;
|
|
download_url: string;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|
|
export interface IDragonwellVersions {
|
|
os: string;
|
|
architecture: string;
|
|
jdk_version: string;
|
|
checksum: string;
|
|
download_link: string;
|
|
edition: string;
|
|
image_type: string;
|
|
}
|