From 7f5d0ce97f9364f57f4e50d7f833558bb669b963 Mon Sep 17 00:00:00 2001 From: priyagupta108 Date: Wed, 26 Aug 2026 15:10:35 +0530 Subject: [PATCH] refactor: update logging group name for Go version setup --- dist/setup/index.js | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/setup/index.js b/dist/setup/index.js index 9f0db9c..c206971 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -100581,7 +100581,7 @@ async function run() { arch = external_os_default().arch(); } if (versionSpec) { - startGroup(`Setup Go ${versionSpec}`); + startGroup('Installed version'); try { core_info(`Setup go version spec ${versionSpec}`); const token = getInput('token'); diff --git a/src/main.ts b/src/main.ts index fb17d05..2bc2765 100644 --- a/src/main.ts +++ b/src/main.ts @@ -29,7 +29,7 @@ export async function run() { } if (versionSpec) { - core.startGroup(`Setup Go ${versionSpec}`); + core.startGroup('Installed version'); try { core.info(`Setup go version spec ${versionSpec}`);