mirror of
https://github.com/actions/checkout.git
synced 2026-03-22 12:59:53 +08:00
Merge b6a00b350f into 0c366fd6a8
This commit is contained in:
commit
5e64c6349c
14
dist/index.js
vendored
14
dist/index.js
vendored
|
|
@ -789,7 +789,14 @@ class GitCommandManager {
|
|||
else {
|
||||
args.push(ref);
|
||||
}
|
||||
yield this.execGit(args);
|
||||
// Retry checkout because it can trigger network I/O when using partial
|
||||
// clones (filter=blob:none). In that mode git lazily fetches missing
|
||||
// blobs from the promisor remote during checkout, so a transient network
|
||||
// failure would otherwise surface as a hard error here.
|
||||
const that = this;
|
||||
yield retryHelper.execute(() => __awaiter(this, void 0, void 0, function* () {
|
||||
yield that.execGit(args);
|
||||
}));
|
||||
});
|
||||
}
|
||||
checkoutDetach() {
|
||||
|
|
@ -990,7 +997,10 @@ class GitCommandManager {
|
|||
if (recursive) {
|
||||
args.push('--recursive');
|
||||
}
|
||||
yield this.execGit(args);
|
||||
const that = this;
|
||||
yield retryHelper.execute(() => __awaiter(this, void 0, void 0, function* () {
|
||||
yield that.execGit(args);
|
||||
}));
|
||||
});
|
||||
}
|
||||
submoduleStatus() {
|
||||
|
|
|
|||
|
|
@ -228,7 +228,14 @@ class GitCommandManager {
|
|||
args.push(ref)
|
||||
}
|
||||
|
||||
await this.execGit(args)
|
||||
// Retry checkout because it can trigger network I/O when using partial
|
||||
// clones (filter=blob:none). In that mode git lazily fetches missing
|
||||
// blobs from the promisor remote during checkout, so a transient network
|
||||
// failure would otherwise surface as a hard error here.
|
||||
const that = this
|
||||
await retryHelper.execute(async () => {
|
||||
await that.execGit(args)
|
||||
})
|
||||
}
|
||||
|
||||
async checkoutDetach(): Promise<void> {
|
||||
|
|
@ -457,7 +464,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> {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user