From 2e85460103d66a2197b3cb4ad522aa848d24bc7c Mon Sep 17 00:00:00 2001 From: Brian Cristante <33549821+brcrista@users.noreply.github.com> Date: Tue, 3 May 2022 08:43:40 -0400 Subject: [PATCH] Successfully set up (#231) --- __tests__/setup-go.test.ts | 2 +- dist/index.js | 2 +- src/main.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/__tests__/setup-go.test.ts b/__tests__/setup-go.test.ts index 8c5033b77..a0c2bea63 100644 --- a/__tests__/setup-go.test.ts +++ b/__tests__/setup-go.test.ts @@ -684,7 +684,7 @@ describe('setup-go', () => { expect(logSpy).toHaveBeenCalledWith('Adding to the cache ...'); expect(logSpy).toHaveBeenCalledWith('Added go to the path'); expect(logSpy).toHaveBeenCalledWith( - `Successfully setup go version ${versionSpec}` + `Successfully set up Go version ${versionSpec}` ); }); diff --git a/dist/index.js b/dist/index.js index dd9f2d3c5..a6028e833 100644 --- a/dist/index.js +++ b/dist/index.js @@ -2091,7 +2091,7 @@ function run() { } let added = yield addBinToPath(); core.debug(`add bin ${added}`); - core.info(`Successfully setup go version ${versionSpec}`); + core.info(`Successfully set up Go version ${versionSpec}`); } // add problem matchers const matchersPath = path_1.default.join(__dirname, '..', 'matchers.json'); diff --git a/src/main.ts b/src/main.ts index 10232926a..2f79add48 100644 --- a/src/main.ts +++ b/src/main.ts @@ -36,7 +36,7 @@ export async function run() { let added = await addBinToPath(); core.debug(`add bin ${added}`); - core.info(`Successfully setup go version ${versionSpec}`); + core.info(`Successfully set up Go version ${versionSpec}`); } // add problem matchers