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