mirror of
				https://github.com/actions/cache.git
				synced 2025-10-31 20:08:36 +08:00 
			
		
		
		
	Generated dist
This commit is contained in:
		
							parent
							
								
									e3d8fb0b34
								
							
						
					
					
						commit
						cce93fb2c7
					
				
							
								
								
									
										206
									
								
								dist/restore/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										206
									
								
								dist/restore/index.js
									
									
									
									
										vendored
									
									
								
							|  | @ -3701,30 +3701,7 @@ exports.DiagAPI = DiagAPI; | |||
| /* 121 */, | ||||
| /* 122 */, | ||||
| /* 123 */, | ||||
| /* 124 */ | ||||
| /***/ (function(__unusedmodule, exports) { | ||||
| 
 | ||||
| "use strict"; | ||||
| 
 | ||||
| /* | ||||
|  * Copyright The OpenTelemetry Authors | ||||
|  * | ||||
|  * Licensed under the Apache License, Version 2.0 (the "License"); | ||||
|  * you may not use this file except in compliance with the License. | ||||
|  * You may obtain a copy of the License at | ||||
|  * | ||||
|  *      https://www.apache.org/licenses/LICENSE-2.0
 | ||||
|  * | ||||
|  * Unless required by applicable law or agreed to in writing, software | ||||
|  * distributed under the License is distributed on an "AS IS" BASIS, | ||||
|  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||
|  * See the License for the specific language governing permissions and | ||||
|  * limitations under the License. | ||||
|  */ | ||||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||||
| //# sourceMappingURL=tracer_provider.js.map
 | ||||
| 
 | ||||
| /***/ }), | ||||
| /* 124 */, | ||||
| /* 125 */, | ||||
| /* 126 */, | ||||
| /* 127 */, | ||||
|  | @ -4981,7 +4958,41 @@ exports.checkBypass = checkBypass; | |||
| /* 193 */, | ||||
| /* 194 */, | ||||
| /* 195 */, | ||||
| /* 196 */, | ||||
| /* 196 */ | ||||
| /***/ (function(__unusedmodule, exports) { | ||||
| 
 | ||||
| "use strict"; | ||||
| 
 | ||||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||||
| exports.RefKey = exports.Events = exports.State = exports.Outputs = exports.Inputs = void 0; | ||||
| var Inputs; | ||||
| (function (Inputs) { | ||||
|     Inputs["Key"] = "key"; | ||||
|     Inputs["Path"] = "path"; | ||||
|     Inputs["RestoreKeys"] = "restore-keys"; | ||||
|     Inputs["UploadChunkSize"] = "upload-chunk-size"; | ||||
| })(Inputs = exports.Inputs || (exports.Inputs = {})); | ||||
| var Outputs; | ||||
| (function (Outputs) { | ||||
|     Outputs["CacheHit"] = "cache-hit"; | ||||
|     Outputs["Key"] = "key"; | ||||
|     Outputs["Path"] = "path"; | ||||
| })(Outputs = exports.Outputs || (exports.Outputs = {})); | ||||
| var State; | ||||
| (function (State) { | ||||
|     State["CachePrimaryKey"] = "CACHE_KEY"; | ||||
|     State["CacheMatchedKey"] = "CACHE_RESULT"; | ||||
| })(State = exports.State || (exports.State = {})); | ||||
| var Events; | ||||
| (function (Events) { | ||||
|     Events["Key"] = "GITHUB_EVENT_NAME"; | ||||
|     Events["Push"] = "push"; | ||||
|     Events["PullRequest"] = "pull_request"; | ||||
| })(Events = exports.Events || (exports.Events = {})); | ||||
| exports.RefKey = "GITHUB_REF"; | ||||
| 
 | ||||
| 
 | ||||
| /***/ }), | ||||
| /* 197 */ | ||||
| /***/ (function(__unusedmodule, exports, __webpack_require__) { | ||||
| 
 | ||||
|  | @ -38349,7 +38360,7 @@ __exportStar(__webpack_require__(220), exports); | |||
| __exportStar(__webpack_require__(932), exports); | ||||
| __exportStar(__webpack_require__(975), exports); | ||||
| __exportStar(__webpack_require__(207), exports); | ||||
| __exportStar(__webpack_require__(124), exports); | ||||
| __exportStar(__webpack_require__(694), exports); | ||||
| __exportStar(__webpack_require__(695), exports); | ||||
| var spancontext_utils_1 = __webpack_require__(629); | ||||
| Object.defineProperty(exports, "isSpanContextValid", { enumerable: true, get: function () { return spancontext_utils_1.isSpanContextValid; } }); | ||||
|  | @ -38421,7 +38432,7 @@ 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; | ||||
| const cache = __importStar(__webpack_require__(692)); | ||||
| const core = __importStar(__webpack_require__(470)); | ||||
| const constants_1 = __webpack_require__(694); | ||||
| const constants_1 = __webpack_require__(196); | ||||
| function isGhes() { | ||||
|     const ghUrl = new URL(process.env["GITHUB_SERVER_URL"] || "https://github.com"); | ||||
|     return ghUrl.hostname.toUpperCase() !== "GITHUB.COM"; | ||||
|  | @ -47520,34 +47531,23 @@ exports.saveCache = saveCache; | |||
| 
 | ||||
| "use strict"; | ||||
| 
 | ||||
| /* | ||||
|  * Copyright The OpenTelemetry Authors | ||||
|  * | ||||
|  * Licensed under the Apache License, Version 2.0 (the "License"); | ||||
|  * you may not use this file except in compliance with the License. | ||||
|  * You may obtain a copy of the License at | ||||
|  * | ||||
|  *      https://www.apache.org/licenses/LICENSE-2.0
 | ||||
|  * | ||||
|  * Unless required by applicable law or agreed to in writing, software | ||||
|  * distributed under the License is distributed on an "AS IS" BASIS, | ||||
|  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||
|  * See the License for the specific language governing permissions and | ||||
|  * limitations under the License. | ||||
|  */ | ||||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||||
| exports.RefKey = exports.Events = exports.State = exports.Outputs = exports.Inputs = void 0; | ||||
| var Inputs; | ||||
| (function (Inputs) { | ||||
|     Inputs["Key"] = "key"; | ||||
|     Inputs["Path"] = "path"; | ||||
|     Inputs["RestoreKeys"] = "restore-keys"; | ||||
|     Inputs["UploadChunkSize"] = "upload-chunk-size"; | ||||
| })(Inputs = exports.Inputs || (exports.Inputs = {})); | ||||
| var Outputs; | ||||
| (function (Outputs) { | ||||
|     Outputs["CacheHit"] = "cache-hit"; | ||||
|     Outputs["Key"] = "key"; | ||||
|     Outputs["Path"] = "path"; | ||||
| })(Outputs = exports.Outputs || (exports.Outputs = {})); | ||||
| var State; | ||||
| (function (State) { | ||||
|     State["CachePrimaryKey"] = "CACHE_KEY"; | ||||
|     State["CacheMatchedKey"] = "CACHE_RESULT"; | ||||
| })(State = exports.State || (exports.State = {})); | ||||
| var Events; | ||||
| (function (Events) { | ||||
|     Events["Key"] = "GITHUB_EVENT_NAME"; | ||||
|     Events["Push"] = "push"; | ||||
|     Events["PullRequest"] = "pull_request"; | ||||
| })(Events = exports.Events || (exports.Events = {})); | ||||
| exports.RefKey = "GITHUB_REF"; | ||||
| 
 | ||||
| //# sourceMappingURL=tracer_provider.js.map
 | ||||
| 
 | ||||
| /***/ }), | ||||
| /* 695 */ | ||||
|  | @ -48958,29 +48958,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,20 +48971,11 @@ 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 outputSetter_1 = __webpack_require__(958); | ||||
| const restoreImpl_1 = __importDefault(__webpack_require__(835)); | ||||
| const utils = __importStar(__webpack_require__(443)); | ||||
| function restore() { | ||||
|     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 outputSetter_1.StateOutputSetter()); | ||||
|     }); | ||||
| } | ||||
| exports.default = restore; | ||||
|  | @ -50657,9 +50625,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge | |||
| Object.defineProperty(exports, "__esModule", { value: true }); | ||||
| const cache = __importStar(__webpack_require__(692)); | ||||
| const core = __importStar(__webpack_require__(470)); | ||||
| const constants_1 = __webpack_require__(694); | ||||
| const constants_1 = __webpack_require__(196); | ||||
| const utils = __importStar(__webpack_require__(443)); | ||||
| function run() { | ||||
| function run(outputter) { | ||||
|     return __awaiter(this, void 0, void 0, function* () { | ||||
|         try { | ||||
|             if (!utils.isCacheFeatureAvailable()) { | ||||
|  | @ -50672,7 +50640,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 +50653,13 @@ function run() { | |||
|                 ].join(", ")}`);
 | ||||
|                 return; | ||||
|             } | ||||
|             // Store the matched cache key in states
 | ||||
|             //utils.setCacheState(cacheKey);
 | ||||
|             outputter.setState(constants_1.State.CacheMatchedKey, cacheKey); | ||||
|             const isExactKeyMatch = utils.isExactKeyMatch(core.getInput(constants_1.Inputs.Key, { required: true }), cacheKey); | ||||
|             //utils.setCacheHitOutput(isExactKeyMatch);
 | ||||
|             outputter.setOutput(constants_1.Outputs.CacheHit, isExactKeyMatch.toString()); | ||||
|             core.info(`Cache restored from key: ${cacheKey}`); | ||||
|             return cacheKey; | ||||
|         } | ||||
|         catch (error) { | ||||
|  | @ -55007,7 +54982,54 @@ exports._globalThis = typeof globalThis === 'object' ? globalThis : global; | |||
| 
 | ||||
| /***/ }), | ||||
| /* 957 */, | ||||
| /* 958 */, | ||||
| /* 958 */ | ||||
| /***/ (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.NonStateOutputSetter = exports.StateOutputSetter = void 0; | ||||
| const core = __importStar(__webpack_require__(470)); | ||||
| class StateOutputSetter { | ||||
|     constructor() { | ||||
|         this.setOutput = core.setOutput; | ||||
|         this.setState = core.saveState; | ||||
|     } | ||||
| } | ||||
| exports.StateOutputSetter = StateOutputSetter; | ||||
| class NonStateOutputSetter { | ||||
|     constructor() { | ||||
|         this.setOutput = core.setOutput; | ||||
|         this.setState = core.setOutput; | ||||
|     } | ||||
| } | ||||
| exports.NonStateOutputSetter = NonStateOutputSetter; | ||||
| 
 | ||||
| 
 | ||||
| /***/ }), | ||||
| /* 959 */, | ||||
| /* 960 */ | ||||
| /***/ (function(__unusedmodule, exports, __webpack_require__) { | ||||
|  |  | |||
|  | @ -10,7 +10,7 @@ export class StateOutputSetter implements IOutputSetter { | |||
|     setState = core.saveState; | ||||
| } | ||||
| 
 | ||||
| export class NonStateOuputSetter implements IOutputSetter { | ||||
| export class NonStateOutputSetter implements IOutputSetter { | ||||
|     setOutput = core.setOutput; | ||||
|     setState = core.setOutput; | ||||
| } | ||||
|  |  | |||
|  | @ -1,8 +1,8 @@ | |||
| import { NonStateOuputSetter } from "./outputSetter"; | ||||
| import { NonStateOutputSetter } from "./outputSetter"; | ||||
| import run from "./restoreImpl"; | ||||
| 
 | ||||
| async function restoreOnly(): Promise<void> { | ||||
|     await run(new NonStateOuputSetter()); | ||||
|     await run(new NonStateOutputSetter()); | ||||
| } | ||||
| 
 | ||||
| export default restoreOnly; | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Sankalp Kotewar
						Sankalp Kotewar