mirror of
https://github.com/actions/setup-java.git
synced 2026-09-04 18:09:26 +02:00
* Add Red Hat Build of OpenJDK support Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> * Fix Red Hat tests on Windows Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * Update compiled Red Hat distribution Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
29 lines
594 B
TypeScript
29 lines
594 B
TypeScript
export interface IDiscoPackage {
|
|
id: string;
|
|
archive_type: string;
|
|
distribution: string;
|
|
java_version: string;
|
|
release_status: string;
|
|
operating_system: string;
|
|
architecture: string;
|
|
package_type: string;
|
|
directly_downloadable: boolean;
|
|
}
|
|
|
|
export interface IDiscoPackageListResponse {
|
|
result: IDiscoPackage[];
|
|
message: string;
|
|
}
|
|
|
|
export interface IDiscoPackageDetails {
|
|
filename: string;
|
|
direct_download_uri: string;
|
|
checksum: string;
|
|
checksum_type: string;
|
|
}
|
|
|
|
export interface IDiscoPackageDetailsResponse {
|
|
result: IDiscoPackageDetails[];
|
|
message: string;
|
|
}
|