1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-19 19:46:17 +02:00

Add void return type

This commit is contained in:
Josh Gross 2019-11-21 10:13:58 -05:00
parent c48b49d8ee
commit 7831713a31

View file

@ -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}`);
}