From 7831713a31940bcba45f067d47cd553c3a9e76e2 Mon Sep 17 00:00:00 2001 From: Josh Gross Date: Thu, 21 Nov 2019 10:13:58 -0500 Subject: [PATCH] Add void return type --- src/utils/actionUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/actionUtils.ts b/src/utils/actionUtils.ts index c97d94f..f6369fb 100644 --- a/src/utils/actionUtils.ts +++ b/src/utils/actionUtils.ts @@ -77,7 +77,7 @@ export function getCacheState(): ArtifactCacheEntry | undefined { return undefined; } -export function logWarning(message: string) { +export function logWarning(message: string): void { const warningPrefix = "[warning]"; core.info(`${warningPrefix}${message}`); }