From 03c9ae1068846df860a514eabc4edb1ff0f4731f Mon Sep 17 00:00:00 2001 From: Evgenii Korolevskii Date: Thu, 22 Sep 2022 18:25:25 +0300 Subject: [PATCH] feat(installer): Change warning to info msg --- src/installer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer.ts b/src/installer.ts index bd9c8423..83a43d85 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -502,7 +502,7 @@ export function parseNodeVersionFile(contents: string): string { nodeVersion = JSON.parse(contents).volta?.node; if (!nodeVersion) nodeVersion = JSON.parse(contents).engines?.node; } catch { - core.warning('Node version file is not JSON file'); + core.info('Node version file is not JSON file'); } if (!nodeVersion) {