1
0
mirror of https://github.com/actions/checkout.git synced 2026-06-14 16:53:47 +08:00
This commit is contained in:
Shia
2024-09-26 22:09:11 +05:30
committed by GitHub
3 changed files with 9 additions and 5 deletions

4
dist/index.js vendored
View File

@@ -1271,7 +1271,9 @@ function getSource(settings) {
}
// Fetch
core.startGroup('Fetching the repository');
const fetchOptions = {};
const fetchOptions = {
showProgress: settings.showProgress
};
if (settings.filter) {
fetchOptions.filter = settings.filter;
}