diff --git a/dist/index.js b/dist/index.js index 5c7c322..30afb3f 100644 --- a/dist/index.js +++ b/dist/index.js @@ -16377,7 +16377,7 @@ class Git { * @param targetDirectory The directory in which to clone the repository. */ async clone(repo, headRef, targetDirectory = '.') { - core.info(`Cloning ${repo} with the single branch "${headRef}"`); + core.debug(`Cloning ${repo} with the single branch "${headRef}"`); await this.client.clone(`https://github.com/${repo}`, targetDirectory, [ `--branch=${headRef}`, '--filter=tree:0', diff --git a/src/git.ts b/src/git.ts index 4578187..d76c331 100644 --- a/src/git.ts +++ b/src/git.ts @@ -32,7 +32,7 @@ export class Git { headRef: string, targetDirectory = '.' ): Promise { - core.info(`Cloning ${repo} with the single branch "${headRef}"`) + core.debug(`Cloning ${repo} with the single branch "${headRef}"`) await this.client.clone(`https://github.com/${repo}`, targetDirectory, [ `--branch=${headRef}`,