diff --git a/dist/index.js b/dist/index.js index 2baed04a..77b36912 100644 --- a/dist/index.js +++ b/dist/index.js @@ -5225,7 +5225,7 @@ class GitAuthHelper { } removeGlobalAuth() { return __awaiter(this, void 0, void 0, function* () { - core.info(`Unsetting HOME override`); + core.debug(`Unsetting HOME override`); this.git.removeEnvironmentVariable('HOME'); yield io.rmRF(this.temporaryHomePath); }); @@ -5886,7 +5886,7 @@ function getSource(settings) { } // Fix URL when using SSH if (settings.sshKey && initialRemoteUrl !== sshUrl) { - core.startGroup('Updating the repository to use the SSH URL'); + core.startGroup('Updating the remote URL'); yield git.setRemoteUrl(sshUrl); core.endGroup(); } @@ -7300,7 +7300,7 @@ function prepareExistingDirectory(git, repositoryPath, preferredRemoteUrl, allow } // Update to the preferred remote URL if (remoteUrl !== preferredRemoteUrl) { - core.startGroup('Setting the remote URL'); + core.startGroup('Updating the remote URL'); yield git.setRemoteUrl(preferredRemoteUrl); core.endGroup(); } diff --git a/src/git-auth-helper.ts b/src/git-auth-helper.ts index 06e89125..c4be3ab7 100644 --- a/src/git-auth-helper.ts +++ b/src/git-auth-helper.ts @@ -167,7 +167,7 @@ class GitAuthHelper { } async removeGlobalAuth(): Promise { - core.info(`Unsetting HOME override`) + core.debug(`Unsetting HOME override`) this.git.removeEnvironmentVariable('HOME') await io.rmRF(this.temporaryHomePath) } diff --git a/src/git-directory-helper.ts b/src/git-directory-helper.ts index 709ed822..c56a2fa0 100644 --- a/src/git-directory-helper.ts +++ b/src/git-directory-helper.ts @@ -94,7 +94,7 @@ export async function prepareExistingDirectory( // Update to the preferred remote URL if (remoteUrl !== preferredRemoteUrl) { - core.startGroup('Setting the remote URL') + core.startGroup('Updating the remote URL') await git.setRemoteUrl(preferredRemoteUrl) core.endGroup() } diff --git a/src/git-source-provider.ts b/src/git-source-provider.ts index a8590e13..6bd4a4fd 100644 --- a/src/git-source-provider.ts +++ b/src/git-source-provider.ts @@ -145,7 +145,7 @@ export async function getSource(settings: IGitSourceSettings): Promise { // Fix URL when using SSH if (settings.sshKey && initialRemoteUrl !== sshUrl) { - core.startGroup('Updating the repository to use the SSH URL') + core.startGroup('Updating the remote URL') await git.setRemoteUrl(sshUrl) core.endGroup() }