mirror of
https://github.com/actions/setup-java.git
synced 2026-08-02 16:51:38 +08:00
* Initial plan * Add force-download input * Build force-download action bundles --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Bruno Borges <brborges@microsoft.com>
22 lines
428 B
TypeScript
22 lines
428 B
TypeScript
export interface JavaInstallerOptions {
|
|
version: string;
|
|
architecture: string;
|
|
packageType: string;
|
|
checkLatest: boolean;
|
|
forceDownload?: boolean;
|
|
setDefault?: boolean;
|
|
verifySignature?: boolean;
|
|
verifySignaturePublicKey?: string;
|
|
}
|
|
|
|
export interface JavaInstallerResults {
|
|
version: string;
|
|
path: string;
|
|
}
|
|
|
|
export interface JavaDownloadRelease {
|
|
version: string;
|
|
url: string;
|
|
signatureUrl?: string;
|
|
}
|