* fix: use @actions/core.exportVariable instead of set-env `set-env` is now deprecated. `@actions/core` exposes `exportVariable` to be used instead. https://github.com/actions/toolkit/tree/main/packages/core#exporting-variables * chore: bump @actions/core to v1.2.6
6 lines
197 B
TypeScript
6 lines
197 B
TypeScript
/**
|
|
* 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;
|