mirror of
https://github.com/actions/setup-java.git
synced 2026-09-04 01:49:32 +00:00
Add Red Hat Build of OpenJDK support (#1241)
* 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>
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user