mirror of
https://github.com/actions/setup-java.git
synced 2025-07-07 00:04:16 +00:00
Fix: prevent default installation of JetBrains pre-releases (#859)
* fix: prevent default installation of JetBrains pre-releases * simplify prerelease filter logic * fix basic validation checks
This commit is contained in:
parent
ebb356cc4e
commit
67aec007b3
5 changed files with 1486 additions and 1467 deletions
|
@ -3,11 +3,12 @@
|
|||
export interface IJetBrainsRawVersion {
|
||||
tag_name: string;
|
||||
name: string;
|
||||
prerelease: boolean;
|
||||
}
|
||||
|
||||
export interface IJetBrainsVersion {
|
||||
tag_name: string;
|
||||
semver: string;
|
||||
build: number;
|
||||
build: string;
|
||||
url: string;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue