updating actions core node module

This commit is contained in:
Deepak Sattiraju
2020-10-05 12:28:31 +05:30
parent d6167b0314
commit ba4914ebe5
16 changed files with 422 additions and 110 deletions

5
node_modules/@actions/core/lib/utils.d.ts generated vendored Normal file
View File

@@ -0,0 +1,5 @@
/**
* Sanitizes an input into a string so it can be passed into issueCommand safely
* @param input input to sanitize into a string
*/
export declare function toCommandValue(input: any): string;