diff --git a/dist/index.js b/dist/index.js index 1389602..c67d435 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1248,7 +1248,9 @@ function getSource(settings) { } // Fetch core.startGroup('Fetching the repository'); - const fetchOptions = {}; + const fetchOptions = { + showProgress: settings.showProgress + }; if (settings.filter) { fetchOptions.filter = settings.filter; } diff --git a/src/git-command-manager.ts b/src/git-command-manager.ts index 0f3fd25..d7191c5 100644 --- a/src/git-command-manager.ts +++ b/src/git-command-manager.ts @@ -35,7 +35,7 @@ export interface IGitCommandManager { filter?: string fetchDepth?: number fetchTags?: boolean - showProgress?: boolean + showProgress: boolean } ): Promise getDefaultBranch(repositoryUrl: string): Promise @@ -251,7 +251,7 @@ class GitCommandManager { filter?: string fetchDepth?: number fetchTags?: boolean - showProgress?: boolean + showProgress: boolean } ): Promise { const args = ['-c', 'protocol.version=2', 'fetch'] diff --git a/src/git-source-provider.ts b/src/git-source-provider.ts index 0589722..1c7b0a3 100644 --- a/src/git-source-provider.ts +++ b/src/git-source-provider.ts @@ -157,8 +157,10 @@ export async function getSource(settings: IGitSourceSettings): Promise { filter?: string fetchDepth?: number fetchTags?: boolean - showProgress?: boolean - } = {} + showProgress: boolean + } = { + showProgress: settings.showProgress + } if (settings.filter) { fetchOptions.filter = settings.filter