check failures fix

This commit is contained in:
Aparna Jyothi
2025-02-18 11:52:21 +05:30
parent d2ec999123
commit dbe66977db
5 changed files with 20 additions and 297 deletions

View File

@@ -93,7 +93,8 @@ async function getToolVersion(tool: string, options: string[]) {
}
return stdout.trim();
} catch (err) {
} catch (error: any) {
core.warning(`An error occurred: ${error.message}`);
return '';
}
}