From d479dc3091341baa01dda37ec8e06c6bf9b353a3 Mon Sep 17 00:00:00 2001 From: git-mracek Date: Wed, 25 Feb 2026 22:32:21 +0100 Subject: [PATCH 1/2] `fix: add missing parentheses to core.isDebug()` --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index e2bb739..4dd0cce 100644 --- a/src/main.ts +++ b/src/main.ts @@ -935,7 +935,7 @@ async function execSilent( ignoreReturnCode: true, }); if (out.exitCode !== 0) { - if (!core.isDebug) { + if (!core.isDebug()) { // When debug logging is off, stderr won't have been written to console, write it now. process.stderr.write(out.stderr); } From d29254b72a23d321a25d8a2bac87c66e9c414707 Mon Sep 17 00:00:00 2001 From: Lukas Mracek Date: Wed, 25 Feb 2026 22:41:06 +0000 Subject: [PATCH 2/2] chore: run make build to resolve linter error --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 0a9a0bf..11cd8ec 100644 --- a/dist/index.js +++ b/dist/index.js @@ -53211,7 +53211,7 @@ async function execSilent(label, cmd, args, opts) { ignoreReturnCode: true, }); if (out.exitCode !== 0) { - if (!core.isDebug) { + if (!core.isDebug()) { // When debug logging is off, stderr won't have been written to console, write it now. process.stderr.write(out.stderr); }