From 04e0d05dbf54b55041a8180b5ab03a4e9a992e7d Mon Sep 17 00:00:00 2001 From: Brian Cristante <33549821+brcrista@users.noreply.github.com> Date: Mon, 2 May 2022 16:26:10 -0400 Subject: [PATCH] Successfully set up --- __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 bb85dee..a1f00c3 100644 --- a/__tests__/setup-go.test.ts +++ b/__tests__/setup-go.test.ts @@ -679,7 +679,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 7a7a59c..591056a 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 4295858..947de83 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