|
|
@ -1043,6 +1043,29 @@ class ExecState extends events.EventEmitter {
|
|
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
|
|
|
|
|
|
if (k2 === undefined) k2 = k;
|
|
|
|
|
|
|
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
|
|
|
|
|
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
|
|
|
|
|
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Object.defineProperty(o, k2, desc);
|
|
|
|
|
|
|
|
}) : (function(o, m, k, k2) {
|
|
|
|
|
|
|
|
if (k2 === undefined) k2 = k;
|
|
|
|
|
|
|
|
o[k2] = m[k];
|
|
|
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
|
|
|
|
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
|
|
|
|
|
|
}) : function(o, v) {
|
|
|
|
|
|
|
|
o["default"] = v;
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
|
|
|
|
|
if (mod && mod.__esModule) return mod;
|
|
|
|
|
|
|
|
var result = {};
|
|
|
|
|
|
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
|
|
|
|
|
|
__setModuleDefault(result, mod);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
|
|
|
};
|
|
|
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
|
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
|
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
|
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
|
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
|
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
|
@ -1056,11 +1079,29 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
|
|
|
|
const cache_1 = __webpack_require__(692);
|
|
|
|
|
|
|
|
const core = __importStar(__webpack_require__(470));
|
|
|
|
const saveImpl_1 = __importDefault(__webpack_require__(471));
|
|
|
|
const saveImpl_1 = __importDefault(__webpack_require__(471));
|
|
|
|
const stateProvider_1 = __webpack_require__(309);
|
|
|
|
const stateProvider_1 = __webpack_require__(309);
|
|
|
|
|
|
|
|
const utils = __importStar(__webpack_require__(443));
|
|
|
|
|
|
|
|
// Catch and log any unhandled exceptions. These exceptions can leak out of the uploadChunk method in
|
|
|
|
|
|
|
|
// @actions/toolkit when a failed upload closes the file descriptor causing any in-process reads to
|
|
|
|
|
|
|
|
// throw an uncaught exception. Instead of failing this action, just warn.
|
|
|
|
|
|
|
|
process.on("uncaughtException", e => utils.logWarning(e.message));
|
|
|
|
function run() {
|
|
|
|
function run() {
|
|
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
|
|
|
|
|
|
try {
|
|
|
|
yield (0, saveImpl_1.default)(new stateProvider_1.NullStateProvider());
|
|
|
|
yield (0, saveImpl_1.default)(new stateProvider_1.NullStateProvider());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
catch (error) {
|
|
|
|
|
|
|
|
const typedError = error;
|
|
|
|
|
|
|
|
if (typedError.name === cache_1.ReserveCacheError.name) {
|
|
|
|
|
|
|
|
core.info(`Failed to save: ${typedError.message}`);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
utils.logWarning(error.message);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
run();
|
|
|
|
run();
|
|
|
@ -41086,13 +41127,8 @@ const cache = __importStar(__webpack_require__(692));
|
|
|
|
const core = __importStar(__webpack_require__(470));
|
|
|
|
const core = __importStar(__webpack_require__(470));
|
|
|
|
const constants_1 = __webpack_require__(196);
|
|
|
|
const constants_1 = __webpack_require__(196);
|
|
|
|
const utils = __importStar(__webpack_require__(443));
|
|
|
|
const utils = __importStar(__webpack_require__(443));
|
|
|
|
// Catch and log any unhandled exceptions. These exceptions can leak out of the uploadChunk method in
|
|
|
|
|
|
|
|
// @actions/toolkit when a failed upload closes the file descriptor causing any in-process reads to
|
|
|
|
|
|
|
|
// throw an uncaught exception. Instead of failing this action, just warn.
|
|
|
|
|
|
|
|
process.on("uncaughtException", e => utils.logWarning(e.message));
|
|
|
|
|
|
|
|
function saveImpl(stateProvider) {
|
|
|
|
function saveImpl(stateProvider) {
|
|
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
|
|
try {
|
|
|
|
|
|
|
|
if (!utils.isCacheFeatureAvailable()) {
|
|
|
|
if (!utils.isCacheFeatureAvailable()) {
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -41124,10 +41160,6 @@ function saveImpl(stateProvider) {
|
|
|
|
if (cacheId != -1) {
|
|
|
|
if (cacheId != -1) {
|
|
|
|
core.info(`Cache saved with key: ${primaryKey}`);
|
|
|
|
core.info(`Cache saved with key: ${primaryKey}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
catch (error) {
|
|
|
|
|
|
|
|
utils.logWarning(error.message);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exports.default = saveImpl;
|
|
|
|
exports.default = saveImpl;
|
|
|
@ -47438,12 +47470,10 @@ function saveCache(paths, key, options) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (error) {
|
|
|
|
catch (error) {
|
|
|
|
const typedError = error;
|
|
|
|
const typedError = error;
|
|
|
|
if (typedError.name === ValidationError.name) {
|
|
|
|
if (typedError.name === ValidationError.name ||
|
|
|
|
|
|
|
|
typedError.name === ReserveCacheError.name) {
|
|
|
|
throw error;
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (typedError.name === ReserveCacheError.name) {
|
|
|
|
|
|
|
|
core.info(`Failed to save: ${typedError.message}`);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
else {
|
|
|
|
core.warning(`Failed to save: ${typedError.message}`);
|
|
|
|
core.warning(`Failed to save: ${typedError.message}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|