mirror of
https://github.com/actions/setup-java.git
synced 2025-07-04 09:42:41 +08:00
* fix: prevent default installation of JetBrains pre-releases * simplify prerelease filter logic * fix basic validation checks
15 lines
295 B
TypeScript
15 lines
295 B
TypeScript
// Raw Model from https://api.github.com/repos/JetBrains/JetBrainsRuntime/releases
|
|
|
|
export interface IJetBrainsRawVersion {
|
|
tag_name: string;
|
|
name: string;
|
|
prerelease: boolean;
|
|
}
|
|
|
|
export interface IJetBrainsVersion {
|
|
tag_name: string;
|
|
semver: string;
|
|
build: string;
|
|
url: string;
|
|
}
|