fix lint issues

Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2026-01-07 16:15:39 +01:00
parent 2fec442ac0
commit 607c92fb2b
2 changed files with 2 additions and 2 deletions

View File

@@ -230,7 +230,7 @@ actionsToolkit.run(
await core.group(`Removing temp folder ${stateHelper.tmpDir}`, async () => {
try {
fs.rmSync(stateHelper.tmpDir, {recursive: true});
} catch (e) {
} catch {
core.warning(`Failed to remove temp folder ${stateHelper.tmpDir}`);
}
});

View File

@@ -52,7 +52,7 @@ export function setSummaryInputs(inputs: Inputs) {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const [skey, _] = Build.parseSecretKvp(secret, true);
secretKeys.push(skey);
} catch (err) {
} catch {
// ignore invalid secret
}
}