Misc Tracing cleanup (#15)

* cleanup final bits

* fix import
This commit is contained in:
Thomas Boop
2022-06-15 09:28:43 -04:00
committed by GitHub
parent de4553f25a
commit 47cbf5a0d7
2 changed files with 0 additions and 3 deletions

View File

@@ -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<HookData> {
})
rl.on('line', line => {
core.debug(`Line from STDIN: ${line}`)
input = line
})
await events.default.once(rl, 'close')

View File

@@ -27,7 +27,6 @@ export async function runContainerStep(
}
let secretName: string | undefined = undefined
core.debug('')
if (stepContainer.environmentVariables) {
secretName = await createSecretForEnvs(stepContainer.environmentVariables)
}