1
0
mirror of https://github.com/actions/checkout.git synced 2026-06-17 17:24:00 +08:00
This commit is contained in:
Allen Blaylock
2025-08-19 13:35:37 +08:00
committed by GitHub
2 changed files with 8 additions and 2 deletions

View File

@@ -420,7 +420,10 @@ class GitCommandManager {
args.push('--recursive')
}
await this.execGit(args)
const that = this
await retryHelper.execute(async () => {
await that.execGit(args)
})
}
async submoduleStatus(): Promise<boolean> {