chore: update dev dependencies and workflow

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2022-03-22 20:15:50 +01:00
parent 95bd865778
commit 224b802eb3
12 changed files with 1072 additions and 3183 deletions

View File

@ -8,8 +8,8 @@ export interface ExecResult {
}
export const exec = async (command: string, args: string[] = [], silent: boolean): Promise<ExecResult> => {
let stdout: string = '';
let stderr: string = '';
let stdout = '';
let stderr = '';
const options: ExecOptions = {
silent: silent,

View File

@ -46,7 +46,7 @@ async function run(): Promise<void> {
}
// FIXME: Temp fix https://github.com/actions/toolkit/issues/777
function setOutput(name: string, value: any): void {
function setOutput(name: string, value: unknown): void {
issueCommand('set-output', {name}, value);
}