v3 new release (#101)

This commit is contained in:
github-actions[bot]
2022-10-27 10:04:25 -04:00
committed by GitHub
parent b5b231a831
commit f382f75448
717 changed files with 4912 additions and 33943 deletions

16
node_modules/@actions/tool-cache/lib/manifest.d.ts generated vendored Normal file
View File

@ -0,0 +1,16 @@
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;