From 01a41f11d2eb603cd7997de19c862976271ef6b1 Mon Sep 17 00:00:00 2001 From: tim775 <52185+tim775@users.noreply.github.com> Date: Thu, 13 Jan 2022 11:08:45 -0500 Subject: [PATCH] fix: log CLI version with .info not .notice --- setup/dist/index.js | 2 +- setup/src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/dist/index.js b/setup/dist/index.js index fed62e0..7b4ca15 100644 --- a/setup/dist/index.js +++ b/setup/dist/index.js @@ -15356,7 +15356,7 @@ function setup() { yield renameBinary(pathToCLI, download.binaryName); // Expose the tool by adding it to the PATH core.addPath(pathToCLI); - core.notice(`Setup Infracost CLI version ${version}`); + core.info(`Setup Infracost CLI version ${version}`); // Set configure options const apiKey = core.getInput('api-key'); if (apiKey) { diff --git a/setup/src/index.ts b/setup/src/index.ts index 62210b3..75f84c4 100644 --- a/setup/src/index.ts +++ b/setup/src/index.ts @@ -140,7 +140,7 @@ async function setup(): Promise { // Expose the tool by adding it to the PATH core.addPath(pathToCLI); - core.notice(`Setup Infracost CLI version ${version}`); + core.info(`Setup Infracost CLI version ${version}`); // Set configure options const apiKey = core.getInput('api-key');