diff --git a/packages/hooklib/src/utils.ts b/packages/hooklib/src/utils.ts index 9d97441..12b9c7c 100644 --- a/packages/hooklib/src/utils.ts +++ b/packages/hooklib/src/utils.ts @@ -1,4 +1,3 @@ -import * as core from '@actions/core' import * as events from 'events' import * as fs from 'fs' import * as os from 'os' @@ -13,7 +12,6 @@ export async function getInputFromStdin(): Promise { }) rl.on('line', line => { - core.debug(`Line from STDIN: ${line}`) input = line }) await events.default.once(rl, 'close') diff --git a/packages/k8s/src/hooks/run-container-step.ts b/packages/k8s/src/hooks/run-container-step.ts index adaf6b6..3fc1ee6 100644 --- a/packages/k8s/src/hooks/run-container-step.ts +++ b/packages/k8s/src/hooks/run-container-step.ts @@ -27,7 +27,6 @@ export async function runContainerStep( } let secretName: string | undefined = undefined - core.debug('') if (stepContainer.environmentVariables) { secretName = await createSecretForEnvs(stepContainer.environmentVariables) }