mirror of
				https://github.com/actions/cache.git
				synced 2025-11-01 02:44:18 +08:00 
			
		
		
		
	update save as well
This commit is contained in:
		
							parent
							
								
									d95c048983
								
							
						
					
					
						commit
						ac8fc97c06
					
				
							
								
								
									
										756
									
								
								dist/restore/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										756
									
								
								dist/restore/index.js
									
									
									
									
										vendored
									
									
								
							| @ -38418,7 +38418,7 @@ var __importStar = (this && this.__importStar) || function (mod) { | ||||
|     return result; | ||||
| }; | ||||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||||
| exports.isCacheFeatureAvailable = exports.getInputAsInt = exports.getInputAsArray = exports.isValidEvent = exports.logWarning = exports.getCacheState = exports.setOutputAndState = exports.setCacheHitOutput = exports.setCacheState = exports.isExactKeyMatch = exports.isGhes = void 0; | ||||
| exports.isCacheFeatureAvailable = exports.getInputAsInt = exports.getInputAsArray = exports.isValidEvent = exports.logWarning = exports.setCacheHitOutput = exports.isExactKeyMatch = exports.isGhes = void 0; | ||||
| const cache = __importStar(__webpack_require__(692)); | ||||
| const core = __importStar(__webpack_require__(470)); | ||||
| const constants_1 = __webpack_require__(694); | ||||
| @ -38434,29 +38434,10 @@ function isExactKeyMatch(key, cacheKey) { | ||||
|         }) === 0); | ||||
| } | ||||
| exports.isExactKeyMatch = isExactKeyMatch; | ||||
| function setCacheState(state) { | ||||
|     core.saveState(constants_1.State.CacheMatchedKey, state); | ||||
| } | ||||
| exports.setCacheState = setCacheState; | ||||
| function setCacheHitOutput(isCacheHit) { | ||||
|     core.setOutput(constants_1.Outputs.CacheHit, isCacheHit.toString()); | ||||
| } | ||||
| exports.setCacheHitOutput = setCacheHitOutput; | ||||
| function setOutputAndState(key, cacheKey) { | ||||
|     setCacheHitOutput(isExactKeyMatch(key, cacheKey)); | ||||
|     // Store the matched cache key if it exists
 | ||||
|     cacheKey && setCacheState(cacheKey); | ||||
| } | ||||
| exports.setOutputAndState = setOutputAndState; | ||||
| function getCacheState() { | ||||
|     const cacheKey = core.getState(constants_1.State.CacheMatchedKey); | ||||
|     if (cacheKey) { | ||||
|         core.debug(`Cache state/key: ${cacheKey}`); | ||||
|         return cacheKey; | ||||
|     } | ||||
|     return undefined; | ||||
| } | ||||
| exports.getCacheState = getCacheState; | ||||
| function logWarning(message) { | ||||
|     const warningPrefix = "[warning]"; | ||||
|     core.info(`${warningPrefix}${message}`); | ||||
| @ -38504,7 +38485,318 @@ exports.isCacheFeatureAvailable = isCacheFeatureAvailable; | ||||
| /* 445 */, | ||||
| /* 446 */, | ||||
| /* 447 */, | ||||
| /* 448 */, | ||||
| /* 448 */ | ||||
| /***/ (function(module) { | ||||
| 
 | ||||
| /*! ***************************************************************************** | ||||
| Copyright (c) Microsoft Corporation. | ||||
| 
 | ||||
| Permission to use, copy, modify, and/or distribute this software for any | ||||
| purpose with or without fee is hereby granted. | ||||
| 
 | ||||
| THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | ||||
| REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY | ||||
| AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | ||||
| INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM | ||||
| LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR | ||||
| OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | ||||
| PERFORMANCE OF THIS SOFTWARE. | ||||
| ***************************************************************************** */ | ||||
| /* global global, define, System, Reflect, Promise */ | ||||
| var __extends; | ||||
| var __assign; | ||||
| var __rest; | ||||
| var __decorate; | ||||
| var __param; | ||||
| var __metadata; | ||||
| var __awaiter; | ||||
| var __generator; | ||||
| var __exportStar; | ||||
| var __values; | ||||
| var __read; | ||||
| var __spread; | ||||
| var __spreadArrays; | ||||
| var __spreadArray; | ||||
| var __await; | ||||
| var __asyncGenerator; | ||||
| var __asyncDelegator; | ||||
| var __asyncValues; | ||||
| var __makeTemplateObject; | ||||
| var __importStar; | ||||
| var __importDefault; | ||||
| var __classPrivateFieldGet; | ||||
| var __classPrivateFieldSet; | ||||
| var __createBinding; | ||||
| (function (factory) { | ||||
|     var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {}; | ||||
|     if (typeof define === "function" && define.amd) { | ||||
|         define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); }); | ||||
|     } | ||||
|     else if ( true && typeof module.exports === "object") { | ||||
|         factory(createExporter(root, createExporter(module.exports))); | ||||
|     } | ||||
|     else { | ||||
|         factory(createExporter(root)); | ||||
|     } | ||||
|     function createExporter(exports, previous) { | ||||
|         if (exports !== root) { | ||||
|             if (typeof Object.create === "function") { | ||||
|                 Object.defineProperty(exports, "__esModule", { value: true }); | ||||
|             } | ||||
|             else { | ||||
|                 exports.__esModule = true; | ||||
|             } | ||||
|         } | ||||
|         return function (id, v) { return exports[id] = previous ? previous(id, v) : v; }; | ||||
|     } | ||||
| }) | ||||
| (function (exporter) { | ||||
|     var extendStatics = Object.setPrototypeOf || | ||||
|         ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||||
|         function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; | ||||
| 
 | ||||
|     __extends = function (d, b) { | ||||
|         if (typeof b !== "function" && b !== null) | ||||
|             throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); | ||||
|         extendStatics(d, b); | ||||
|         function __() { this.constructor = d; } | ||||
|         d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||||
|     }; | ||||
| 
 | ||||
|     __assign = Object.assign || function (t) { | ||||
|         for (var s, i = 1, n = arguments.length; i < n; i++) { | ||||
|             s = arguments[i]; | ||||
|             for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; | ||||
|         } | ||||
|         return t; | ||||
|     }; | ||||
| 
 | ||||
|     __rest = function (s, e) { | ||||
|         var t = {}; | ||||
|         for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) | ||||
|             t[p] = s[p]; | ||||
|         if (s != null && typeof Object.getOwnPropertySymbols === "function") | ||||
|             for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { | ||||
|                 if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) | ||||
|                     t[p[i]] = s[p[i]]; | ||||
|             } | ||||
|         return t; | ||||
|     }; | ||||
| 
 | ||||
|     __decorate = function (decorators, target, key, desc) { | ||||
|         var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; | ||||
|         if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); | ||||
|         else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; | ||||
|         return c > 3 && r && Object.defineProperty(target, key, r), r; | ||||
|     }; | ||||
| 
 | ||||
|     __param = function (paramIndex, decorator) { | ||||
|         return function (target, key) { decorator(target, key, paramIndex); } | ||||
|     }; | ||||
| 
 | ||||
|     __metadata = function (metadataKey, metadataValue) { | ||||
|         if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue); | ||||
|     }; | ||||
| 
 | ||||
|     __awaiter = function (thisArg, _arguments, P, generator) { | ||||
|         function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | ||||
|         return new (P || (P = Promise))(function (resolve, reject) { | ||||
|             function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } | ||||
|             function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } | ||||
|             function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } | ||||
|             step((generator = generator.apply(thisArg, _arguments || [])).next()); | ||||
|         }); | ||||
|     }; | ||||
| 
 | ||||
|     __generator = function (thisArg, body) { | ||||
|         var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; | ||||
|         return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; | ||||
|         function verb(n) { return function (v) { return step([n, v]); }; } | ||||
|         function step(op) { | ||||
|             if (f) throw new TypeError("Generator is already executing."); | ||||
|             while (_) try { | ||||
|                 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; | ||||
|                 if (y = 0, t) op = [op[0] & 2, t.value]; | ||||
|                 switch (op[0]) { | ||||
|                     case 0: case 1: t = op; break; | ||||
|                     case 4: _.label++; return { value: op[1], done: false }; | ||||
|                     case 5: _.label++; y = op[1]; op = [0]; continue; | ||||
|                     case 7: op = _.ops.pop(); _.trys.pop(); continue; | ||||
|                     default: | ||||
|                         if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } | ||||
|                         if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } | ||||
|                         if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } | ||||
|                         if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } | ||||
|                         if (t[2]) _.ops.pop(); | ||||
|                         _.trys.pop(); continue; | ||||
|                 } | ||||
|                 op = body.call(thisArg, _); | ||||
|             } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } | ||||
|             if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; | ||||
|         } | ||||
|     }; | ||||
| 
 | ||||
|     __exportStar = function(m, o) { | ||||
|         for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p); | ||||
|     }; | ||||
| 
 | ||||
|     __createBinding = Object.create ? (function(o, m, k, k2) { | ||||
|         if (k2 === undefined) k2 = k; | ||||
|         Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||||
|     }) : (function(o, m, k, k2) { | ||||
|         if (k2 === undefined) k2 = k; | ||||
|         o[k2] = m[k]; | ||||
|     }); | ||||
| 
 | ||||
|     __values = function (o) { | ||||
|         var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; | ||||
|         if (m) return m.call(o); | ||||
|         if (o && typeof o.length === "number") return { | ||||
|             next: function () { | ||||
|                 if (o && i >= o.length) o = void 0; | ||||
|                 return { value: o && o[i++], done: !o }; | ||||
|             } | ||||
|         }; | ||||
|         throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); | ||||
|     }; | ||||
| 
 | ||||
|     __read = function (o, n) { | ||||
|         var m = typeof Symbol === "function" && o[Symbol.iterator]; | ||||
|         if (!m) return o; | ||||
|         var i = m.call(o), r, ar = [], e; | ||||
|         try { | ||||
|             while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); | ||||
|         } | ||||
|         catch (error) { e = { error: error }; } | ||||
|         finally { | ||||
|             try { | ||||
|                 if (r && !r.done && (m = i["return"])) m.call(i); | ||||
|             } | ||||
|             finally { if (e) throw e.error; } | ||||
|         } | ||||
|         return ar; | ||||
|     }; | ||||
| 
 | ||||
|     /** @deprecated */ | ||||
|     __spread = function () { | ||||
|         for (var ar = [], i = 0; i < arguments.length; i++) | ||||
|             ar = ar.concat(__read(arguments[i])); | ||||
|         return ar; | ||||
|     }; | ||||
| 
 | ||||
|     /** @deprecated */ | ||||
|     __spreadArrays = function () { | ||||
|         for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; | ||||
|         for (var r = Array(s), k = 0, i = 0; i < il; i++) | ||||
|             for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) | ||||
|                 r[k] = a[j]; | ||||
|         return r; | ||||
|     }; | ||||
| 
 | ||||
|     __spreadArray = function (to, from, pack) { | ||||
|         if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { | ||||
|             if (ar || !(i in from)) { | ||||
|                 if (!ar) ar = Array.prototype.slice.call(from, 0, i); | ||||
|                 ar[i] = from[i]; | ||||
|             } | ||||
|         } | ||||
|         return to.concat(ar || Array.prototype.slice.call(from)); | ||||
|     }; | ||||
| 
 | ||||
|     __await = function (v) { | ||||
|         return this instanceof __await ? (this.v = v, this) : new __await(v); | ||||
|     }; | ||||
| 
 | ||||
|     __asyncGenerator = function (thisArg, _arguments, generator) { | ||||
|         if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); | ||||
|         var g = generator.apply(thisArg, _arguments || []), i, q = []; | ||||
|         return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i; | ||||
|         function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; } | ||||
|         function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } | ||||
|         function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r);  } | ||||
|         function fulfill(value) { resume("next", value); } | ||||
|         function reject(value) { resume("throw", value); } | ||||
|         function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } | ||||
|     }; | ||||
| 
 | ||||
|     __asyncDelegator = function (o) { | ||||
|         var i, p; | ||||
|         return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i; | ||||
|         function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; } | ||||
|     }; | ||||
| 
 | ||||
|     __asyncValues = function (o) { | ||||
|         if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); | ||||
|         var m = o[Symbol.asyncIterator], i; | ||||
|         return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i); | ||||
|         function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } | ||||
|         function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); } | ||||
|     }; | ||||
| 
 | ||||
|     __makeTemplateObject = function (cooked, raw) { | ||||
|         if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; } | ||||
|         return cooked; | ||||
|     }; | ||||
| 
 | ||||
|     var __setModuleDefault = Object.create ? (function(o, v) { | ||||
|         Object.defineProperty(o, "default", { enumerable: true, value: v }); | ||||
|     }) : function(o, v) { | ||||
|         o["default"] = v; | ||||
|     }; | ||||
| 
 | ||||
|     __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; | ||||
|     }; | ||||
| 
 | ||||
|     __importDefault = function (mod) { | ||||
|         return (mod && mod.__esModule) ? mod : { "default": mod }; | ||||
|     }; | ||||
| 
 | ||||
|     __classPrivateFieldGet = function (receiver, state, kind, f) { | ||||
|         if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); | ||||
|         if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); | ||||
|         return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); | ||||
|     }; | ||||
| 
 | ||||
|     __classPrivateFieldSet = function (receiver, state, value, kind, f) { | ||||
|         if (kind === "m") throw new TypeError("Private method is not writable"); | ||||
|         if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); | ||||
|         if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); | ||||
|         return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value; | ||||
|     }; | ||||
| 
 | ||||
|     exporter("__extends", __extends); | ||||
|     exporter("__assign", __assign); | ||||
|     exporter("__rest", __rest); | ||||
|     exporter("__decorate", __decorate); | ||||
|     exporter("__param", __param); | ||||
|     exporter("__metadata", __metadata); | ||||
|     exporter("__awaiter", __awaiter); | ||||
|     exporter("__generator", __generator); | ||||
|     exporter("__exportStar", __exportStar); | ||||
|     exporter("__createBinding", __createBinding); | ||||
|     exporter("__values", __values); | ||||
|     exporter("__read", __read); | ||||
|     exporter("__spread", __spread); | ||||
|     exporter("__spreadArrays", __spreadArrays); | ||||
|     exporter("__spreadArray", __spreadArray); | ||||
|     exporter("__await", __await); | ||||
|     exporter("__asyncGenerator", __asyncGenerator); | ||||
|     exporter("__asyncDelegator", __asyncDelegator); | ||||
|     exporter("__asyncValues", __asyncValues); | ||||
|     exporter("__makeTemplateObject", __makeTemplateObject); | ||||
|     exporter("__importStar", __importStar); | ||||
|     exporter("__importDefault", __importDefault); | ||||
|     exporter("__classPrivateFieldGet", __classPrivateFieldGet); | ||||
|     exporter("__classPrivateFieldSet", __classPrivateFieldSet); | ||||
| }); | ||||
| 
 | ||||
| 
 | ||||
| /***/ }), | ||||
| /* 449 */, | ||||
| /* 450 */, | ||||
| /* 451 */ | ||||
| @ -41343,7 +41635,7 @@ function rng() { | ||||
| Object.defineProperty(exports, '__esModule', { value: true }); | ||||
| 
 | ||||
| __webpack_require__(97); | ||||
| var tslib = __webpack_require__(671); | ||||
| var tslib = __webpack_require__(448); | ||||
| 
 | ||||
| // Copyright (c) Microsoft Corporation.
 | ||||
| /** | ||||
| @ -46685,314 +46977,72 @@ var SpanKind; | ||||
| 
 | ||||
| /***/ }), | ||||
| /* 671 */ | ||||
| /***/ (function(module) { | ||||
| /***/ (function(__unusedmodule, exports, __webpack_require__) { | ||||
| 
 | ||||
| /*! ***************************************************************************** | ||||
| Copyright (c) Microsoft Corporation. | ||||
| "use strict"; | ||||
| 
 | ||||
| Permission to use, copy, modify, and/or distribute this software for any | ||||
| purpose with or without fee is hereby granted. | ||||
| 
 | ||||
| THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | ||||
| REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY | ||||
| AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | ||||
| INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM | ||||
| LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR | ||||
| OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | ||||
| PERFORMANCE OF THIS SOFTWARE. | ||||
| ***************************************************************************** */ | ||||
| /* global global, define, System, Reflect, Promise */ | ||||
| var __extends; | ||||
| var __assign; | ||||
| var __rest; | ||||
| var __decorate; | ||||
| var __param; | ||||
| var __metadata; | ||||
| var __awaiter; | ||||
| var __generator; | ||||
| var __exportStar; | ||||
| var __values; | ||||
| var __read; | ||||
| var __spread; | ||||
| var __spreadArrays; | ||||
| var __spreadArray; | ||||
| var __await; | ||||
| var __asyncGenerator; | ||||
| var __asyncDelegator; | ||||
| var __asyncValues; | ||||
| var __makeTemplateObject; | ||||
| var __importStar; | ||||
| var __importDefault; | ||||
| var __classPrivateFieldGet; | ||||
| var __classPrivateFieldSet; | ||||
| var __createBinding; | ||||
| (function (factory) { | ||||
|     var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {}; | ||||
|     if (typeof define === "function" && define.amd) { | ||||
|         define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); }); | ||||
| 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]; } }; | ||||
|     } | ||||
|     else if ( true && typeof module.exports === "object") { | ||||
|         factory(createExporter(root, createExporter(module.exports))); | ||||
|     } | ||||
|     else { | ||||
|         factory(createExporter(root)); | ||||
|     } | ||||
|     function createExporter(exports, previous) { | ||||
|         if (exports !== root) { | ||||
|             if (typeof Object.create === "function") { | ||||
|                 Object.defineProperty(exports, "__esModule", { value: true }); | ||||
|             } | ||||
|             else { | ||||
|                 exports.__esModule = true; | ||||
|             } | ||||
|         } | ||||
|         return function (id, v) { return exports[id] = previous ? previous(id, v) : v; }; | ||||
|     } | ||||
| }) | ||||
| (function (exporter) { | ||||
|     var extendStatics = Object.setPrototypeOf || | ||||
|         ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||||
|         function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; | ||||
| 
 | ||||
|     __extends = function (d, b) { | ||||
|         if (typeof b !== "function" && b !== null) | ||||
|             throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); | ||||
|         extendStatics(d, b); | ||||
|         function __() { this.constructor = d; } | ||||
|         d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||||
|     }; | ||||
| 
 | ||||
|     __assign = Object.assign || function (t) { | ||||
|         for (var s, i = 1, n = arguments.length; i < n; i++) { | ||||
|             s = arguments[i]; | ||||
|             for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; | ||||
|         } | ||||
|         return t; | ||||
|     }; | ||||
| 
 | ||||
|     __rest = function (s, e) { | ||||
|         var t = {}; | ||||
|         for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) | ||||
|             t[p] = s[p]; | ||||
|         if (s != null && typeof Object.getOwnPropertySymbols === "function") | ||||
|             for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { | ||||
|                 if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) | ||||
|                     t[p[i]] = s[p[i]]; | ||||
|             } | ||||
|         return t; | ||||
|     }; | ||||
| 
 | ||||
|     __decorate = function (decorators, target, key, desc) { | ||||
|         var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; | ||||
|         if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); | ||||
|         else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; | ||||
|         return c > 3 && r && Object.defineProperty(target, key, r), r; | ||||
|     }; | ||||
| 
 | ||||
|     __param = function (paramIndex, decorator) { | ||||
|         return function (target, key) { decorator(target, key, paramIndex); } | ||||
|     }; | ||||
| 
 | ||||
|     __metadata = function (metadataKey, metadataValue) { | ||||
|         if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue); | ||||
|     }; | ||||
| 
 | ||||
|     __awaiter = function (thisArg, _arguments, P, generator) { | ||||
|         function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | ||||
|         return new (P || (P = Promise))(function (resolve, reject) { | ||||
|             function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } | ||||
|             function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } | ||||
|             function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } | ||||
|             step((generator = generator.apply(thisArg, _arguments || [])).next()); | ||||
|         }); | ||||
|     }; | ||||
| 
 | ||||
|     __generator = function (thisArg, body) { | ||||
|         var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; | ||||
|         return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; | ||||
|         function verb(n) { return function (v) { return step([n, v]); }; } | ||||
|         function step(op) { | ||||
|             if (f) throw new TypeError("Generator is already executing."); | ||||
|             while (_) try { | ||||
|                 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; | ||||
|                 if (y = 0, t) op = [op[0] & 2, t.value]; | ||||
|                 switch (op[0]) { | ||||
|                     case 0: case 1: t = op; break; | ||||
|                     case 4: _.label++; return { value: op[1], done: false }; | ||||
|                     case 5: _.label++; y = op[1]; op = [0]; continue; | ||||
|                     case 7: op = _.ops.pop(); _.trys.pop(); continue; | ||||
|                     default: | ||||
|                         if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } | ||||
|                         if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } | ||||
|                         if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } | ||||
|                         if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } | ||||
|                         if (t[2]) _.ops.pop(); | ||||
|                         _.trys.pop(); continue; | ||||
|                 } | ||||
|                 op = body.call(thisArg, _); | ||||
|             } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } | ||||
|             if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; | ||||
|         } | ||||
|     }; | ||||
| 
 | ||||
|     __exportStar = function(m, o) { | ||||
|         for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p); | ||||
|     }; | ||||
| 
 | ||||
|     __createBinding = Object.create ? (function(o, m, k, k2) { | ||||
|         if (k2 === undefined) k2 = k; | ||||
|         Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||||
|     }) : (function(o, m, k, k2) { | ||||
|         if (k2 === undefined) k2 = k; | ||||
|         o[k2] = m[k]; | ||||
|     }); | ||||
| 
 | ||||
|     __values = function (o) { | ||||
|         var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; | ||||
|         if (m) return m.call(o); | ||||
|         if (o && typeof o.length === "number") return { | ||||
|             next: function () { | ||||
|                 if (o && i >= o.length) o = void 0; | ||||
|                 return { value: o && o[i++], done: !o }; | ||||
|             } | ||||
|         }; | ||||
|         throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); | ||||
|     }; | ||||
| 
 | ||||
|     __read = function (o, n) { | ||||
|         var m = typeof Symbol === "function" && o[Symbol.iterator]; | ||||
|         if (!m) return o; | ||||
|         var i = m.call(o), r, ar = [], e; | ||||
|         try { | ||||
|             while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); | ||||
|         } | ||||
|         catch (error) { e = { error: error }; } | ||||
|         finally { | ||||
|             try { | ||||
|                 if (r && !r.done && (m = i["return"])) m.call(i); | ||||
|             } | ||||
|             finally { if (e) throw e.error; } | ||||
|         } | ||||
|         return ar; | ||||
|     }; | ||||
| 
 | ||||
|     /** @deprecated */ | ||||
|     __spread = function () { | ||||
|         for (var ar = [], i = 0; i < arguments.length; i++) | ||||
|             ar = ar.concat(__read(arguments[i])); | ||||
|         return ar; | ||||
|     }; | ||||
| 
 | ||||
|     /** @deprecated */ | ||||
|     __spreadArrays = function () { | ||||
|         for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; | ||||
|         for (var r = Array(s), k = 0, i = 0; i < il; i++) | ||||
|             for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) | ||||
|                 r[k] = a[j]; | ||||
|         return r; | ||||
|     }; | ||||
| 
 | ||||
|     __spreadArray = function (to, from, pack) { | ||||
|         if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { | ||||
|             if (ar || !(i in from)) { | ||||
|                 if (!ar) ar = Array.prototype.slice.call(from, 0, i); | ||||
|                 ar[i] = from[i]; | ||||
|             } | ||||
|         } | ||||
|         return to.concat(ar || Array.prototype.slice.call(from)); | ||||
|     }; | ||||
| 
 | ||||
|     __await = function (v) { | ||||
|         return this instanceof __await ? (this.v = v, this) : new __await(v); | ||||
|     }; | ||||
| 
 | ||||
|     __asyncGenerator = function (thisArg, _arguments, generator) { | ||||
|         if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); | ||||
|         var g = generator.apply(thisArg, _arguments || []), i, q = []; | ||||
|         return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i; | ||||
|         function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; } | ||||
|         function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } | ||||
|         function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r);  } | ||||
|         function fulfill(value) { resume("next", value); } | ||||
|         function reject(value) { resume("throw", value); } | ||||
|         function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } | ||||
|     }; | ||||
| 
 | ||||
|     __asyncDelegator = function (o) { | ||||
|         var i, p; | ||||
|         return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i; | ||||
|         function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; } | ||||
|     }; | ||||
| 
 | ||||
|     __asyncValues = function (o) { | ||||
|         if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); | ||||
|         var m = o[Symbol.asyncIterator], i; | ||||
|         return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i); | ||||
|         function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } | ||||
|         function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); } | ||||
|     }; | ||||
| 
 | ||||
|     __makeTemplateObject = function (cooked, raw) { | ||||
|         if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; } | ||||
|         return cooked; | ||||
|     }; | ||||
| 
 | ||||
|     var __setModuleDefault = Object.create ? (function(o, v) { | ||||
|         Object.defineProperty(o, "default", { enumerable: true, value: v }); | ||||
|     }) : function(o, v) { | ||||
|         o["default"] = v; | ||||
|     }; | ||||
| 
 | ||||
|     __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; | ||||
|     }; | ||||
| 
 | ||||
|     __importDefault = function (mod) { | ||||
|         return (mod && mod.__esModule) ? mod : { "default": mod }; | ||||
|     }; | ||||
| 
 | ||||
|     __classPrivateFieldGet = function (receiver, state, kind, f) { | ||||
|         if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); | ||||
|         if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); | ||||
|         return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); | ||||
|     }; | ||||
| 
 | ||||
|     __classPrivateFieldSet = function (receiver, state, value, kind, f) { | ||||
|         if (kind === "m") throw new TypeError("Private method is not writable"); | ||||
|         if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); | ||||
|         if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); | ||||
|         return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value; | ||||
|     }; | ||||
| 
 | ||||
|     exporter("__extends", __extends); | ||||
|     exporter("__assign", __assign); | ||||
|     exporter("__rest", __rest); | ||||
|     exporter("__decorate", __decorate); | ||||
|     exporter("__param", __param); | ||||
|     exporter("__metadata", __metadata); | ||||
|     exporter("__awaiter", __awaiter); | ||||
|     exporter("__generator", __generator); | ||||
|     exporter("__exportStar", __exportStar); | ||||
|     exporter("__createBinding", __createBinding); | ||||
|     exporter("__values", __values); | ||||
|     exporter("__read", __read); | ||||
|     exporter("__spread", __spread); | ||||
|     exporter("__spreadArrays", __spreadArrays); | ||||
|     exporter("__spreadArray", __spreadArray); | ||||
|     exporter("__await", __await); | ||||
|     exporter("__asyncGenerator", __asyncGenerator); | ||||
|     exporter("__asyncDelegator", __asyncDelegator); | ||||
|     exporter("__asyncValues", __asyncValues); | ||||
|     exporter("__makeTemplateObject", __makeTemplateObject); | ||||
|     exporter("__importStar", __importStar); | ||||
|     exporter("__importDefault", __importDefault); | ||||
|     exporter("__classPrivateFieldGet", __classPrivateFieldGet); | ||||
|     exporter("__classPrivateFieldSet", __classPrivateFieldSet); | ||||
|     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; | ||||
| }; | ||||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||||
| exports.NullStateProvider = exports.StateProvider = void 0; | ||||
| const core = __importStar(__webpack_require__(470)); | ||||
| const constants_1 = __webpack_require__(694); | ||||
| class StateProviderBase { | ||||
|     constructor() { | ||||
|         // eslint-disable-next-line @typescript-eslint/no-unused-vars, @typescript-eslint/no-empty-function
 | ||||
|         this.setState = (key, value) => { }; | ||||
|         // eslint-disable-next-line @typescript-eslint/no-unused-vars
 | ||||
|         this.getState = (key) => ""; | ||||
|     } | ||||
|     getCacheState() { | ||||
|         const cacheKey = this.getState(constants_1.State.CacheMatchedKey); | ||||
|         if (cacheKey) { | ||||
|             core.debug(`Cache state/key: ${cacheKey}`); | ||||
|             return cacheKey; | ||||
|         } | ||||
|         return undefined; | ||||
|     } | ||||
| } | ||||
| class StateProvider extends StateProviderBase { | ||||
|     constructor() { | ||||
|         super(...arguments); | ||||
|         //setOutput = core.setOutput;
 | ||||
|         this.setState = core.saveState; | ||||
|         this.getState = core.getState; | ||||
|     } | ||||
| } | ||||
| exports.StateProvider = StateProvider; | ||||
| class NullStateProvider extends StateProviderBase { | ||||
|     constructor() { | ||||
|         super(...arguments); | ||||
|         //setOutput = core.setOutput;
 | ||||
|         this.setState = core.setOutput; | ||||
|         // eslint-disable-next-line @typescript-eslint/no-unused-vars
 | ||||
|         this.getState = (key) => ""; | ||||
|     } | ||||
| } | ||||
| exports.NullStateProvider = NullStateProvider; | ||||
| 
 | ||||
| 
 | ||||
| /***/ }), | ||||
| @ -47532,8 +47582,6 @@ var Inputs; | ||||
| var Outputs; | ||||
| (function (Outputs) { | ||||
|     Outputs["CacheHit"] = "cache-hit"; | ||||
|     Outputs["Key"] = "key"; | ||||
|     Outputs["Path"] = "path"; | ||||
| })(Outputs = exports.Outputs || (exports.Outputs = {})); | ||||
| var State; | ||||
| (function (State) { | ||||
| @ -48958,29 +49006,6 @@ module.exports = function(dst, src) { | ||||
| 
 | ||||
| "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) { | ||||
|     function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | ||||
|     return new (P || (P = Promise))(function (resolve, reject) { | ||||
| @ -48994,23 +49019,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) { | ||||
|     return (mod && mod.__esModule) ? mod : { "default": mod }; | ||||
| }; | ||||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||||
| const core = __importStar(__webpack_require__(470)); | ||||
| const constants_1 = __webpack_require__(694); | ||||
| const stateProvider_1 = __webpack_require__(671); | ||||
| const restoreImpl_1 = __importDefault(__webpack_require__(835)); | ||||
| const utils = __importStar(__webpack_require__(443)); | ||||
| function restore() { | ||||
| function run() { | ||||
|     return __awaiter(this, void 0, void 0, function* () { | ||||
|         const cacheKey = yield (0, restoreImpl_1.default)(); | ||||
|         if (cacheKey) { | ||||
|             // Store the matched cache key in states
 | ||||
|             utils.setCacheState(cacheKey); | ||||
|             const isExactKeyMatch = utils.isExactKeyMatch(core.getInput(constants_1.Inputs.Key, { required: true }), cacheKey); | ||||
|             utils.setCacheHitOutput(isExactKeyMatch); | ||||
|             core.info(`Cache restored from key: ${cacheKey}`); | ||||
|         } | ||||
|         yield (0, restoreImpl_1.default)(new stateProvider_1.StateProvider()); | ||||
|     }); | ||||
| } | ||||
| exports.default = restore; | ||||
| run(); | ||||
| exports.default = run; | ||||
| 
 | ||||
| 
 | ||||
| /***/ }), | ||||
| @ -50659,7 +50676,7 @@ const cache = __importStar(__webpack_require__(692)); | ||||
| const core = __importStar(__webpack_require__(470)); | ||||
| const constants_1 = __webpack_require__(694); | ||||
| const utils = __importStar(__webpack_require__(443)); | ||||
| function run() { | ||||
| function restoreImpl(outputter) { | ||||
|     return __awaiter(this, void 0, void 0, function* () { | ||||
|         try { | ||||
|             if (!utils.isCacheFeatureAvailable()) { | ||||
| @ -50672,7 +50689,7 @@ function run() { | ||||
|                 return; | ||||
|             } | ||||
|             const primaryKey = core.getInput(constants_1.Inputs.Key, { required: true }); | ||||
|             core.saveState(constants_1.State.CachePrimaryKey, primaryKey); | ||||
|             outputter.setState(constants_1.State.CachePrimaryKey, primaryKey); | ||||
|             const restoreKeys = utils.getInputAsArray(constants_1.Inputs.RestoreKeys); | ||||
|             const cachePaths = utils.getInputAsArray(constants_1.Inputs.Path, { | ||||
|                 required: true | ||||
| @ -50685,6 +50702,11 @@ function run() { | ||||
|                 ].join(", ")}`);
 | ||||
|                 return; | ||||
|             } | ||||
|             // Store the matched cache key in states
 | ||||
|             outputter.setState(constants_1.State.CacheMatchedKey, cacheKey); | ||||
|             const isExactKeyMatch = utils.isExactKeyMatch(core.getInput(constants_1.Inputs.Key, { required: true }), cacheKey); | ||||
|             core.setOutput(constants_1.Outputs.CacheHit, isExactKeyMatch.toString()); | ||||
|             core.info(`Cache restored from key: ${cacheKey}`); | ||||
|             return cacheKey; | ||||
|         } | ||||
|         catch (error) { | ||||
| @ -50692,7 +50714,7 @@ function run() { | ||||
|         } | ||||
|     }); | ||||
| } | ||||
| exports.default = run; | ||||
| exports.default = restoreImpl; | ||||
| 
 | ||||
| 
 | ||||
| /***/ }), | ||||
|  | ||||
							
								
								
									
										254
									
								
								dist/save/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										254
									
								
								dist/save/index.js
									
									
									
									
										vendored
									
									
								
							| @ -4975,8 +4975,6 @@ var Inputs; | ||||
| var Outputs; | ||||
| (function (Outputs) { | ||||
|     Outputs["CacheHit"] = "cache-hit"; | ||||
|     Outputs["Key"] = "key"; | ||||
|     Outputs["Path"] = "path"; | ||||
| })(Outputs = exports.Outputs || (exports.Outputs = {})); | ||||
| var State; | ||||
| (function (State) { | ||||
| @ -9346,7 +9344,76 @@ function expand(str, isTop) { | ||||
| /***/ }), | ||||
| /* 307 */, | ||||
| /* 308 */, | ||||
| /* 309 */, | ||||
| /* 309 */ | ||||
| /***/ (function(__unusedmodule, exports, __webpack_require__) { | ||||
| 
 | ||||
| "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; | ||||
| }; | ||||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||||
| exports.NullStateProvider = exports.StateProvider = void 0; | ||||
| const core = __importStar(__webpack_require__(470)); | ||||
| const constants_1 = __webpack_require__(196); | ||||
| class StateProviderBase { | ||||
|     constructor() { | ||||
|         // eslint-disable-next-line @typescript-eslint/no-unused-vars, @typescript-eslint/no-empty-function
 | ||||
|         this.setState = (key, value) => { }; | ||||
|         // eslint-disable-next-line @typescript-eslint/no-unused-vars
 | ||||
|         this.getState = (key) => ""; | ||||
|     } | ||||
|     getCacheState() { | ||||
|         const cacheKey = this.getState(constants_1.State.CacheMatchedKey); | ||||
|         if (cacheKey) { | ||||
|             core.debug(`Cache state/key: ${cacheKey}`); | ||||
|             return cacheKey; | ||||
|         } | ||||
|         return undefined; | ||||
|     } | ||||
| } | ||||
| class StateProvider extends StateProviderBase { | ||||
|     constructor() { | ||||
|         super(...arguments); | ||||
|         //setOutput = core.setOutput;
 | ||||
|         this.setState = core.saveState; | ||||
|         this.getState = core.getState; | ||||
|     } | ||||
| } | ||||
| exports.StateProvider = StateProvider; | ||||
| class NullStateProvider extends StateProviderBase { | ||||
|     constructor() { | ||||
|         super(...arguments); | ||||
|         //setOutput = core.setOutput;
 | ||||
|         this.setState = core.setOutput; | ||||
|         // eslint-disable-next-line @typescript-eslint/no-unused-vars
 | ||||
|         this.getState = (key) => ""; | ||||
|     } | ||||
| } | ||||
| exports.NullStateProvider = NullStateProvider; | ||||
| 
 | ||||
| 
 | ||||
| /***/ }), | ||||
| /* 310 */, | ||||
| /* 311 */, | ||||
| /* 312 */ | ||||
| @ -38424,7 +38491,7 @@ var __importStar = (this && this.__importStar) || function (mod) { | ||||
|     return result; | ||||
| }; | ||||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||||
| exports.isCacheFeatureAvailable = exports.getInputAsInt = exports.getInputAsArray = exports.isValidEvent = exports.logWarning = exports.getCacheState = exports.setOutputAndState = exports.setCacheHitOutput = exports.setCacheState = exports.isExactKeyMatch = exports.isGhes = void 0; | ||||
| exports.isCacheFeatureAvailable = exports.getInputAsInt = exports.getInputAsArray = exports.isValidEvent = exports.logWarning = exports.setCacheHitOutput = exports.isExactKeyMatch = exports.isGhes = void 0; | ||||
| const cache = __importStar(__webpack_require__(692)); | ||||
| const core = __importStar(__webpack_require__(470)); | ||||
| const constants_1 = __webpack_require__(196); | ||||
| @ -38440,29 +38507,10 @@ function isExactKeyMatch(key, cacheKey) { | ||||
|         }) === 0); | ||||
| } | ||||
| exports.isExactKeyMatch = isExactKeyMatch; | ||||
| function setCacheState(state) { | ||||
|     core.saveState(constants_1.State.CacheMatchedKey, state); | ||||
| } | ||||
| exports.setCacheState = setCacheState; | ||||
| function setCacheHitOutput(isCacheHit) { | ||||
|     core.setOutput(constants_1.Outputs.CacheHit, isCacheHit.toString()); | ||||
| } | ||||
| exports.setCacheHitOutput = setCacheHitOutput; | ||||
| function setOutputAndState(key, cacheKey) { | ||||
|     setCacheHitOutput(isExactKeyMatch(key, cacheKey)); | ||||
|     // Store the matched cache key if it exists
 | ||||
|     cacheKey && setCacheState(cacheKey); | ||||
| } | ||||
| exports.setOutputAndState = setOutputAndState; | ||||
| function getCacheState() { | ||||
|     const cacheKey = core.getState(constants_1.State.CacheMatchedKey); | ||||
|     if (cacheKey) { | ||||
|         core.debug(`Cache state/key: ${cacheKey}`); | ||||
|         return cacheKey; | ||||
|     } | ||||
|     return undefined; | ||||
| } | ||||
| exports.getCacheState = getCacheState; | ||||
| function logWarning(message) { | ||||
|     const warningPrefix = "[warning]"; | ||||
|     core.info(`${warningPrefix}${message}`); | ||||
| @ -40894,7 +40942,96 @@ Object.defineProperty(exports, "toPlatformPath", { enumerable: true, get: functi | ||||
| //# sourceMappingURL=core.js.map
 | ||||
| 
 | ||||
| /***/ }), | ||||
| /* 471 */, | ||||
| /* 471 */ | ||||
| /***/ (function(__unusedmodule, exports, __webpack_require__) { | ||||
| 
 | ||||
| "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) { | ||||
|     function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | ||||
|     return new (P || (P = Promise))(function (resolve, reject) { | ||||
|         function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } | ||||
|         function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } | ||||
|         function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } | ||||
|         step((generator = generator.apply(thisArg, _arguments || [])).next()); | ||||
|     }); | ||||
| }; | ||||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||||
| const cache = __importStar(__webpack_require__(692)); | ||||
| const core = __importStar(__webpack_require__(470)); | ||||
| const constants_1 = __webpack_require__(196); | ||||
| 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) { | ||||
|     return __awaiter(this, void 0, void 0, function* () { | ||||
|         try { | ||||
|             if (!utils.isCacheFeatureAvailable()) { | ||||
|                 return; | ||||
|             } | ||||
|             if (!utils.isValidEvent()) { | ||||
|                 utils.logWarning(`Event Validation Error: The event type ${process.env[constants_1.Events.Key]} is not supported because it's not tied to a branch or tag ref.`); | ||||
|                 return; | ||||
|             } | ||||
|             // If restore has stored a primary key in state, reuse that
 | ||||
|             // Else re-evaluate from inputs
 | ||||
|             const primaryKey = stateProvider.getState(constants_1.State.CachePrimaryKey) || | ||||
|                 core.getInput(constants_1.Inputs.Key); | ||||
|             if (!primaryKey) { | ||||
|                 utils.logWarning(`Error retrieving key from state.`); | ||||
|                 return; | ||||
|             } | ||||
|             // If matched restore key is same as primary key, then do not save cache
 | ||||
|             // NO-OP in case of SaveOnly action
 | ||||
|             const state = stateProvider.getCacheState(); | ||||
|             if (utils.isExactKeyMatch(primaryKey, state)) { | ||||
|                 core.info(`Cache hit occurred on the primary key ${primaryKey}, not saving cache.`); | ||||
|                 return; | ||||
|             } | ||||
|             const cachePaths = utils.getInputAsArray(constants_1.Inputs.Path, { | ||||
|                 required: true | ||||
|             }); | ||||
|             const cacheId = yield cache.saveCache(cachePaths, primaryKey, { | ||||
|                 uploadChunkSize: utils.getInputAsInt(constants_1.Inputs.UploadChunkSize) | ||||
|             }); | ||||
|             if (cacheId != -1) { | ||||
|                 core.info(`Cache saved with key: ${primaryKey}`); | ||||
|             } | ||||
|         } | ||||
|         catch (error) { | ||||
|             utils.logWarning(error.message); | ||||
|         } | ||||
|     }); | ||||
| } | ||||
| exports.default = saveImpl; | ||||
| 
 | ||||
| 
 | ||||
| /***/ }), | ||||
| /* 472 */, | ||||
| /* 473 */, | ||||
| /* 474 */, | ||||
| @ -47270,29 +47407,6 @@ exports.default = _default; | ||||
| 
 | ||||
| "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) { | ||||
|     function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | ||||
|     return new (P || (P = Promise))(function (resolve, reject) { | ||||
| @ -47302,49 +47416,15 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge | ||||
|         step((generator = generator.apply(thisArg, _arguments || [])).next()); | ||||
|     }); | ||||
| }; | ||||
| var __importDefault = (this && this.__importDefault) || function (mod) { | ||||
|     return (mod && mod.__esModule) ? mod : { "default": mod }; | ||||
| }; | ||||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||||
| const cache = __importStar(__webpack_require__(692)); | ||||
| const core = __importStar(__webpack_require__(470)); | ||||
| const constants_1 = __webpack_require__(196); | ||||
| 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)); | ||||
| const saveImpl_1 = __importDefault(__webpack_require__(471)); | ||||
| const stateProvider_1 = __webpack_require__(309); | ||||
| function run() { | ||||
|     return __awaiter(this, void 0, void 0, function* () { | ||||
|         try { | ||||
|             if (!utils.isCacheFeatureAvailable()) { | ||||
|                 return; | ||||
|             } | ||||
|             if (!utils.isValidEvent()) { | ||||
|                 utils.logWarning(`Event Validation Error: The event type ${process.env[constants_1.Events.Key]} is not supported because it's not tied to a branch or tag ref.`); | ||||
|                 return; | ||||
|             } | ||||
|             const state = utils.getCacheState(); | ||||
|             // Inputs are re-evaluted before the post action, so we want the original key used for restore
 | ||||
|             const primaryKey = core.getState(constants_1.State.CachePrimaryKey) || core.getInput(constants_1.Inputs.Key); | ||||
|             if (!primaryKey) { | ||||
|                 utils.logWarning(`Error retrieving key from state.`); | ||||
|                 return; | ||||
|             } | ||||
|             if (utils.isExactKeyMatch(primaryKey, state)) { | ||||
|                 core.info(`Cache hit occurred on the primary key ${primaryKey}, not saving cache.`); | ||||
|                 return; | ||||
|             } | ||||
|             const cachePaths = utils.getInputAsArray(constants_1.Inputs.Path, { | ||||
|                 required: true | ||||
|             }); | ||||
|             const cacheId = yield cache.saveCache(cachePaths, primaryKey, { | ||||
|                 uploadChunkSize: utils.getInputAsInt(constants_1.Inputs.UploadChunkSize) | ||||
|             }); | ||||
|             if (cacheId != -1) { | ||||
|                 core.info(`Cache saved with key: ${primaryKey}`); | ||||
|             } | ||||
|         } | ||||
|         catch (error) { | ||||
|             utils.logWarning(error.message); | ||||
|         } | ||||
|         yield (0, saveImpl_1.default)(new stateProvider_1.StateProvider()); | ||||
|     }); | ||||
| } | ||||
| run(); | ||||
|  | ||||
| @ -6,9 +6,7 @@ export enum Inputs { | ||||
| } | ||||
| 
 | ||||
| export enum Outputs { | ||||
|     CacheHit = "cache-hit", | ||||
|     Key = "key", | ||||
|     Path = "path" | ||||
|     CacheHit = "cache-hit" | ||||
| } | ||||
| 
 | ||||
| export enum State { | ||||
|  | ||||
| @ -1,16 +0,0 @@ | ||||
| import * as core from "@actions/core"; | ||||
| 
 | ||||
| export interface IOutputSetter { | ||||
|     setOutput(key: string, value: string): void; | ||||
|     setState(key: string, value: string): void; | ||||
| } | ||||
| 
 | ||||
| export class StateOutputSetter implements IOutputSetter { | ||||
|     setOutput = core.setOutput; | ||||
|     setState = core.saveState; | ||||
| } | ||||
| 
 | ||||
| export class NonStateOuputSetter implements IOutputSetter { | ||||
|     setOutput = core.setOutput; | ||||
|     setState = core.setOutput; | ||||
| } | ||||
| @ -1,8 +1,10 @@ | ||||
| import { StateOutputSetter } from "./outputSetter"; | ||||
| import run from "./restoreImpl"; | ||||
| import { StateProvider } from "./stateProvider"; | ||||
| import restoreImpl from "./restoreImpl"; | ||||
| 
 | ||||
| async function restore(): Promise<void> { | ||||
|     await run(new StateOutputSetter()); | ||||
| async function run(): Promise<void> { | ||||
|     await restoreImpl(new StateProvider()); | ||||
| } | ||||
| 
 | ||||
| export default restore; | ||||
| run(); | ||||
| 
 | ||||
| export default run; | ||||
|  | ||||
| @ -2,10 +2,10 @@ import * as cache from "@actions/cache"; | ||||
| import * as core from "@actions/core"; | ||||
| 
 | ||||
| import { Events, Inputs, Outputs, State } from "./constants"; | ||||
| import { IOutputSetter } from "./outputSetter"; | ||||
| import { IStateProvider } from "./stateProvider"; | ||||
| import * as utils from "./utils/actionUtils"; | ||||
| 
 | ||||
| async function run(outputter: IOutputSetter): Promise<string | undefined> { | ||||
| async function restoreImpl(outputter: IStateProvider): Promise<string | undefined> { | ||||
|     try { | ||||
|         if (!utils.isCacheFeatureAvailable()) { | ||||
|             utils.setCacheHitOutput(false); | ||||
| @ -48,15 +48,14 @@ async function run(outputter: IOutputSetter): Promise<string | undefined> { | ||||
|         } | ||||
| 
 | ||||
|         // Store the matched cache key in states
 | ||||
|         //utils.setCacheState(cacheKey);
 | ||||
|         outputter.setState(State.CacheMatchedKey, cacheKey); | ||||
| 
 | ||||
|         const isExactKeyMatch = utils.isExactKeyMatch( | ||||
|             core.getInput(Inputs.Key, { required: true }), | ||||
|             cacheKey | ||||
|         ); | ||||
|         //utils.setCacheHitOutput(isExactKeyMatch);
 | ||||
|         outputter.setOutput(Outputs.CacheHit, isExactKeyMatch.toString()); | ||||
| 
 | ||||
|         core.setOutput(Outputs.CacheHit, isExactKeyMatch.toString()); | ||||
|         core.info(`Cache restored from key: ${cacheKey}`); | ||||
| 
 | ||||
|         return cacheKey; | ||||
| @ -65,4 +64,4 @@ async function run(outputter: IOutputSetter): Promise<string | undefined> { | ||||
|     } | ||||
| } | ||||
| 
 | ||||
| export default run; | ||||
| export default restoreImpl; | ||||
|  | ||||
| @ -1,8 +1,10 @@ | ||||
| import { NonStateOuputSetter } from "./outputSetter"; | ||||
| import run from "./restoreImpl"; | ||||
| import restoreImpl from "./restoreImpl"; | ||||
| import { NullStateProvider } from "./stateProvider"; | ||||
| 
 | ||||
| async function restoreOnly(): Promise<void> { | ||||
|     await run(new NonStateOuputSetter()); | ||||
| async function run(): Promise<void> { | ||||
|     await restoreImpl(new NullStateProvider()); | ||||
| } | ||||
| 
 | ||||
| export default restoreOnly; | ||||
| run(); | ||||
| 
 | ||||
| export default run; | ||||
|  | ||||
							
								
								
									
										59
									
								
								src/save.ts
									
									
									
									
									
								
							
							
						
						
									
										59
									
								
								src/save.ts
									
									
									
									
									
								
							| @ -1,61 +1,8 @@ | ||||
| import * as cache from "@actions/cache"; | ||||
| import * as core from "@actions/core"; | ||||
| 
 | ||||
| import { Events, Inputs, State } from "./constants"; | ||||
| import * as utils from "./utils/actionUtils"; | ||||
| 
 | ||||
| // 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)); | ||||
| import saveImpl from "./saveImpl"; | ||||
| import { StateProvider } from "./stateProvider"; | ||||
| 
 | ||||
| async function run(): Promise<void> { | ||||
|     try { | ||||
|         if (!utils.isCacheFeatureAvailable()) { | ||||
|             return; | ||||
|         } | ||||
| 
 | ||||
|         if (!utils.isValidEvent()) { | ||||
|             utils.logWarning( | ||||
|                 `Event Validation Error: The event type ${ | ||||
|                     process.env[Events.Key] | ||||
|                 } is not supported because it's not tied to a branch or tag ref.` | ||||
|             ); | ||||
|             return; | ||||
|         } | ||||
| 
 | ||||
|         const state = utils.getCacheState(); | ||||
| 
 | ||||
|         // Inputs are re-evaluted before the post action, so we want the original key used for restore
 | ||||
|         const primaryKey = | ||||
|             core.getState(State.CachePrimaryKey) || core.getInput(Inputs.Key); | ||||
| 
 | ||||
|         if (!primaryKey) { | ||||
|             utils.logWarning(`Error retrieving key from state.`); | ||||
|             return; | ||||
|         } | ||||
| 
 | ||||
|         if (utils.isExactKeyMatch(primaryKey, state)) { | ||||
|             core.info( | ||||
|                 `Cache hit occurred on the primary key ${primaryKey}, not saving cache.` | ||||
|             ); | ||||
|             return; | ||||
|         } | ||||
| 
 | ||||
|         const cachePaths = utils.getInputAsArray(Inputs.Path, { | ||||
|             required: true | ||||
|         }); | ||||
| 
 | ||||
|         const cacheId = await cache.saveCache(cachePaths, primaryKey, { | ||||
|             uploadChunkSize: utils.getInputAsInt(Inputs.UploadChunkSize) | ||||
|         }); | ||||
| 
 | ||||
|         if (cacheId != -1) { | ||||
|             core.info(`Cache saved with key: ${primaryKey}`); | ||||
|         } | ||||
|     } catch (error: unknown) { | ||||
|         utils.logWarning((error as Error).message); | ||||
|     } | ||||
|     await saveImpl(new StateProvider()); | ||||
| } | ||||
| 
 | ||||
| run(); | ||||
|  | ||||
							
								
								
									
										65
									
								
								src/saveImpl.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										65
									
								
								src/saveImpl.ts
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,65 @@ | ||||
| import * as cache from "@actions/cache"; | ||||
| import * as core from "@actions/core"; | ||||
| 
 | ||||
| import { Events, Inputs, State } from "./constants"; | ||||
| import { IStateProvider } from "./stateProvider"; | ||||
| import * as utils from "./utils/actionUtils"; | ||||
| 
 | ||||
| // 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)); | ||||
| 
 | ||||
| async function saveImpl(stateProvider: IStateProvider): Promise<void> { | ||||
|     try { | ||||
|         if (!utils.isCacheFeatureAvailable()) { | ||||
|             return; | ||||
|         } | ||||
| 
 | ||||
|         if (!utils.isValidEvent()) { | ||||
|             utils.logWarning( | ||||
|                 `Event Validation Error: The event type ${ | ||||
|                     process.env[Events.Key] | ||||
|                 } is not supported because it's not tied to a branch or tag ref.` | ||||
|             ); | ||||
|             return; | ||||
|         } | ||||
| 
 | ||||
|         // If restore has stored a primary key in state, reuse that
 | ||||
|         // Else re-evaluate from inputs
 | ||||
|         const primaryKey = | ||||
|             stateProvider.getState(State.CachePrimaryKey) || | ||||
|             core.getInput(Inputs.Key); | ||||
| 
 | ||||
|         if (!primaryKey) { | ||||
|             utils.logWarning(`Error retrieving key from state.`); | ||||
|             return; | ||||
|         } | ||||
| 
 | ||||
|         // If matched restore key is same as primary key, then do not save cache
 | ||||
|         // NO-OP in case of SaveOnly action
 | ||||
|         const state = stateProvider.getCacheState(); | ||||
|         if (utils.isExactKeyMatch(primaryKey, state)) { | ||||
|             core.info( | ||||
|                 `Cache hit occurred on the primary key ${primaryKey}, not saving cache.` | ||||
|             ); | ||||
|             return; | ||||
|         } | ||||
| 
 | ||||
|         const cachePaths = utils.getInputAsArray(Inputs.Path, { | ||||
|             required: true | ||||
|         }); | ||||
| 
 | ||||
|         const cacheId = await cache.saveCache(cachePaths, primaryKey, { | ||||
|             uploadChunkSize: utils.getInputAsInt(Inputs.UploadChunkSize) | ||||
|         }); | ||||
| 
 | ||||
|         if (cacheId != -1) { | ||||
|             core.info(`Cache saved with key: ${primaryKey}`); | ||||
|         } | ||||
|     } catch (error: unknown) { | ||||
|         utils.logWarning((error as Error).message); | ||||
|     } | ||||
| } | ||||
| 
 | ||||
| export default saveImpl; | ||||
							
								
								
									
										10
									
								
								src/saveOnly.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								src/saveOnly.ts
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,10 @@ | ||||
| import saveImpl from "./saveImpl"; | ||||
| import { NullStateProvider } from "./stateProvider"; | ||||
| 
 | ||||
| async function run(): Promise<void> { | ||||
|     await saveImpl(new NullStateProvider()); | ||||
| } | ||||
| 
 | ||||
| run(); | ||||
| 
 | ||||
| export default run; | ||||
							
								
								
									
										42
									
								
								src/stateProvider.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										42
									
								
								src/stateProvider.ts
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,42 @@ | ||||
| import * as core from "@actions/core"; | ||||
| 
 | ||||
| import { State } from "./constants"; | ||||
| 
 | ||||
| export interface IStateProvider { | ||||
|     //setOutput(key: string, value: string): void;
 | ||||
|     setState(key: string, value: string): void; | ||||
|     getState(key: string): string; | ||||
| 
 | ||||
|     getCacheState(): string | undefined; | ||||
| } | ||||
| 
 | ||||
| class StateProviderBase implements IStateProvider { | ||||
|     getCacheState(): string | undefined { | ||||
|         const cacheKey = this.getState(State.CacheMatchedKey); | ||||
|         if (cacheKey) { | ||||
|             core.debug(`Cache state/key: ${cacheKey}`); | ||||
|             return cacheKey; | ||||
|         } | ||||
| 
 | ||||
|         return undefined; | ||||
|     } | ||||
| 
 | ||||
|     // eslint-disable-next-line @typescript-eslint/no-unused-vars, @typescript-eslint/no-empty-function
 | ||||
|     setState = (key: string, value: string) => {}; | ||||
| 
 | ||||
|     // eslint-disable-next-line @typescript-eslint/no-unused-vars
 | ||||
|     getState = (key: string) => ""; | ||||
| } | ||||
| 
 | ||||
| export class StateProvider extends StateProviderBase { | ||||
|     //setOutput = core.setOutput;
 | ||||
|     setState = core.saveState; | ||||
|     getState = core.getState; | ||||
| } | ||||
| 
 | ||||
| export class NullStateProvider extends StateProviderBase { | ||||
|     //setOutput = core.setOutput;
 | ||||
|     setState = core.setOutput; | ||||
|     // eslint-disable-next-line @typescript-eslint/no-unused-vars
 | ||||
|     getState = (key: string) => ""; | ||||
| } | ||||
| @ -1,7 +1,7 @@ | ||||
| import * as cache from "@actions/cache"; | ||||
| import * as core from "@actions/core"; | ||||
| 
 | ||||
| import { Outputs, RefKey, State } from "../constants"; | ||||
| import { Outputs, RefKey } from "../constants"; | ||||
| 
 | ||||
| export function isGhes(): boolean { | ||||
|     const ghUrl = new URL( | ||||
| @ -19,30 +19,10 @@ export function isExactKeyMatch(key: string, cacheKey?: string): boolean { | ||||
|     ); | ||||
| } | ||||
| 
 | ||||
| export function setCacheState(state: string): void { | ||||
|     core.saveState(State.CacheMatchedKey, state); | ||||
| } | ||||
| 
 | ||||
| export function setCacheHitOutput(isCacheHit: boolean): void { | ||||
|     core.setOutput(Outputs.CacheHit, isCacheHit.toString()); | ||||
| } | ||||
| 
 | ||||
| export function setOutputAndState(key: string, cacheKey?: string): void { | ||||
|     setCacheHitOutput(isExactKeyMatch(key, cacheKey)); | ||||
|     // Store the matched cache key if it exists
 | ||||
|     cacheKey && setCacheState(cacheKey); | ||||
| } | ||||
| 
 | ||||
| export function getCacheState(): string | undefined { | ||||
|     const cacheKey = core.getState(State.CacheMatchedKey); | ||||
|     if (cacheKey) { | ||||
|         core.debug(`Cache state/key: ${cacheKey}`); | ||||
|         return cacheKey; | ||||
|     } | ||||
| 
 | ||||
|     return undefined; | ||||
| } | ||||
| 
 | ||||
| export function logWarning(message: string): void { | ||||
|     const warningPrefix = "[warning]"; | ||||
|     core.info(`${warningPrefix}${message}`); | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Bishal Prasad
						Bishal Prasad