mirror of https://github.com/actions/setup-go.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
552 B
TypeScript
17 lines
552 B
TypeScript
export interface IToolReleaseFile {
|
|
filename: string;
|
|
platform: string;
|
|
platform_version?: string;
|
|
arch: string;
|
|
download_url: string;
|
|
}
|
|
export interface IToolRelease {
|
|
version: string;
|
|
stable: boolean;
|
|
release_url: string;
|
|
files: IToolReleaseFile[];
|
|
}
|
|
export declare function _findMatch(versionSpec: string, stable: boolean, candidates: IToolRelease[], archFilter: string): Promise<IToolRelease | undefined>;
|
|
export declare function _getOsVersion(): string;
|
|
export declare function _readLinuxVersionFile(): string;
|