mirror of
https://github.com/actions/cache.git
synced 2026-01-08 12:59:53 +11:00
Merge remote-tracking branch 'upstream/main' into fix/v4-update
This commit is contained in:
commit
4c85713eab
9 changed files with 117 additions and 106 deletions
15
dist/restore/index.js
vendored
15
dist/restore/index.js
vendored
|
|
@ -94464,7 +94464,7 @@ const stateProvider_1 = __nccwpck_require__(1527);
|
|||
const utils = __importStar(__nccwpck_require__(6850));
|
||||
const custom = __importStar(__nccwpck_require__(1082));
|
||||
const canSaveToS3 = process.env["RUNS_ON_S3_BUCKET_CACHE"] !== undefined;
|
||||
function restoreImpl(stateProvider) {
|
||||
function restoreImpl(stateProvider, earlyExit) {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
try {
|
||||
if (!utils.isCacheFeatureAvailable()) {
|
||||
|
|
@ -94517,21 +94517,16 @@ function restoreImpl(stateProvider) {
|
|||
}
|
||||
catch (error) {
|
||||
core.setFailed(error.message);
|
||||
if (earlyExit) {
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
exports.restoreImpl = restoreImpl;
|
||||
function run(stateProvider, earlyExit) {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
try {
|
||||
yield restoreImpl(stateProvider);
|
||||
}
|
||||
catch (err) {
|
||||
console.error(err);
|
||||
if (earlyExit) {
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
yield restoreImpl(stateProvider, earlyExit);
|
||||
// node will stay alive if any promises are not resolved,
|
||||
// which is a possibility if HTTP requests are dangling
|
||||
// due to retries or timeouts. We know that if we got here
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue