mirror of
https://github.com/actions/checkout.git
synced 2026-03-22 07:32:12 +01:00
Merge b6a00b350f into 0c366fd6a8
This commit is contained in:
commit
5e64c6349c
2 changed files with 24 additions and 4 deletions
14
dist/index.js
vendored
14
dist/index.js
vendored
|
|
@ -789,7 +789,14 @@ class GitCommandManager {
|
||||||
else {
|
else {
|
||||||
args.push(ref);
|
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() {
|
checkoutDetach() {
|
||||||
|
|
@ -990,7 +997,10 @@ class GitCommandManager {
|
||||||
if (recursive) {
|
if (recursive) {
|
||||||
args.push('--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() {
|
submoduleStatus() {
|
||||||
|
|
|
||||||
|
|
@ -228,7 +228,14 @@ class GitCommandManager {
|
||||||
args.push(ref)
|
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> {
|
async checkoutDetach(): Promise<void> {
|
||||||
|
|
@ -457,7 +464,10 @@ class GitCommandManager {
|
||||||
args.push('--recursive')
|
args.push('--recursive')
|
||||||
}
|
}
|
||||||
|
|
||||||
await this.execGit(args)
|
const that = this
|
||||||
|
await retryHelper.execute(async () => {
|
||||||
|
await that.execGit(args)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
async submoduleStatus(): Promise<boolean> {
|
async submoduleStatus(): Promise<boolean> {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue