diff --git a/src/utils/git.ts b/src/utils/git.ts index 33738a6..9d1a89e 100644 --- a/src/utils/git.ts +++ b/src/utils/git.ts @@ -1,13 +1,3 @@ -import * as core from '@actions/core' -import {getExecOutput} from '@actions/exec' - export async function listFiles(): Promise { return [] } - -function fixStdOutNullTermination(): void { - // Previous command uses NULL as delimiters and output is printed to stdout. - // We have to make sure next thing written to stdout will start on new line. - // Otherwise things like ::set-output wouldn't work. - core.info('') -}