mirror of
https://github.com/actions/setup-java.git
synced 2026-07-08 14:21:50 +00:00
* Bump prettier from 3.6.2 to 3.9.1 Bumps [prettier](https://github.com/prettier/prettier) from 3.6.2 to 3.9.1. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.6.2...3.9.1) --- updated-dependencies: - dependency-name: prettier dependency-version: 3.9.1 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Format files for Prettier 3.9.1 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Borges <brborges@microsoft.com> Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
22 lines
487 B
TypeScript
22 lines
487 B
TypeScript
// Models from https://api.bell-sw.com/api.html
|
|
|
|
export type Bitness = '32' | '64';
|
|
export type ArchType = 'arm' | 'ppc' | 'sparc' | 'x86';
|
|
|
|
export type OsVersions =
|
|
'linux' | 'linux-musl' | 'macos' | 'solaris' | 'windows';
|
|
|
|
export interface ArchitectureOptions {
|
|
bitness: Bitness;
|
|
arch: ArchType;
|
|
}
|
|
|
|
export interface LibericaVersion {
|
|
downloadUrl: string;
|
|
version: string;
|
|
featureVersion: number;
|
|
interimVersion: number;
|
|
updateVersion: number;
|
|
buildVersion: number;
|
|
}
|