From 67e7f6effb71d43ed0e5427481a6bcbc13e8ef1a Mon Sep 17 00:00:00 2001 From: JulianRooze Date: Thu, 27 Mar 2025 22:59:40 +0100 Subject: [PATCH] . --- src/utils/git.ts | 10 ---------- 1 file changed, 10 deletions(-) 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('') -}