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