Swap to Environment Files V1 Release (#77)

* Swap to Environment Files
This commit is contained in:
Thomas Boop
2020-10-01 10:45:33 -04:00
committed by GitHub
parent 9fbc767707
commit 0caeaed6fd
58 changed files with 3717 additions and 2608 deletions

12
node_modules/@actions/tool-cache/lib/retry-helper.d.ts generated vendored Normal file
View File

@ -0,0 +1,12 @@
/**
* Internal class for retries
*/
export declare class RetryHelper {
private maxAttempts;
private minSeconds;
private maxSeconds;
constructor(maxAttempts: number, minSeconds: number, maxSeconds: number);
execute<T>(action: () => Promise<T>, isRetryable?: (e: Error) => boolean): Promise<T>;
private getSleepAmount;
private sleep;
}