mirror of
				https://github.com/actions/cache.git
				synced 2025-10-31 11:48:38 +08:00 
			
		
		
		
	Don't edit index.js since that's not actually how you make changes
This commit is contained in:
		
							parent
							
								
									9806e2f37f
								
							
						
					
					
						commit
						12b3b8a0b8
					
				
							
								
								
									
										57
									
								
								dist/restore-only/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										57
									
								
								dist/restore-only/index.js
									
									
									
									
										vendored
									
									
								
							|  | @ -1260,7 +1260,7 @@ function retry(name, method, getStatusCode, maxAttempts = constants_1.DefaultRet | ||||||
| exports.retry = retry; | exports.retry = retry; | ||||||
| function retryTypedResponse(name, method, maxAttempts = constants_1.DefaultRetryAttempts, delay = constants_1.DefaultRetryDelay) { | function retryTypedResponse(name, method, maxAttempts = constants_1.DefaultRetryAttempts, delay = constants_1.DefaultRetryDelay) { | ||||||
|     return __awaiter(this, void 0, void 0, function* () { |     return __awaiter(this, void 0, void 0, function* () { | ||||||
|         return yield retry(name, method, (response) => response.statusCode, maxAttempts, delay, |         return yield retry(name, method, (response) => response.statusCode, maxAttempts, delay,  | ||||||
|         // If the error object contains the statusCode property, extract it and return
 |         // If the error object contains the statusCode property, extract it and return
 | ||||||
|         // an TypedResponse<T> so it can be processed by the retry logic.
 |         // an TypedResponse<T> so it can be processed by the retry logic.
 | ||||||
|         (error) => { |         (error) => { | ||||||
|  | @ -2230,8 +2230,8 @@ class OidcClient { | ||||||
|             const res = yield httpclient |             const res = yield httpclient | ||||||
|                 .getJson(id_token_url) |                 .getJson(id_token_url) | ||||||
|                 .catch(error => { |                 .catch(error => { | ||||||
|                 throw new Error(`Failed to get ID Token. \n |                 throw new Error(`Failed to get ID Token. \n 
 | ||||||
|         Error Code : ${error.statusCode}\n |         Error Code : ${error.statusCode}\n  | ||||||
|         Error Message: ${error.result.message}`);
 |         Error Message: ${error.result.message}`);
 | ||||||
|             }); |             }); | ||||||
|             const id_token = (_a = res.result) === null || _a === void 0 ? void 0 : _a.value; |             const id_token = (_a = res.result) === null || _a === void 0 ? void 0 : _a.value; | ||||||
|  | @ -7437,7 +7437,7 @@ class Serializer { | ||||||
|     /** |     /** | ||||||
|      * The provided model mapper. |      * The provided model mapper. | ||||||
|      */ |      */ | ||||||
|     modelMappers = {}, |     modelMappers = {},  | ||||||
|     /** |     /** | ||||||
|      * Whether the contents are XML or not. |      * Whether the contents are XML or not. | ||||||
|      */ |      */ | ||||||
|  | @ -9553,7 +9553,7 @@ class NodeFetchHttpClient { | ||||||
|             body = uploadReportStream; |             body = uploadReportStream; | ||||||
|         } |         } | ||||||
|         const platformSpecificRequestInit = await this.prepareRequest(httpRequest); |         const platformSpecificRequestInit = await this.prepareRequest(httpRequest); | ||||||
|         const requestInit = Object.assign({ body: body, headers: httpRequest.headers.rawHeaders(), method: httpRequest.method, |         const requestInit = Object.assign({ body: body, headers: httpRequest.headers.rawHeaders(), method: httpRequest.method,  | ||||||
|             // the types for RequestInit are from the browser, which expects AbortSignal to
 |             // the types for RequestInit are from the browser, which expects AbortSignal to
 | ||||||
|             // have `reason` and `throwIfAborted`, but these don't exist on our polyfill
 |             // have `reason` and `throwIfAborted`, but these don't exist on our polyfill
 | ||||||
|             // for Node.
 |             // for Node.
 | ||||||
|  | @ -9752,7 +9752,7 @@ class BaseRequestPolicy { | ||||||
|     /** |     /** | ||||||
|      * The next policy in the pipeline. Each policy is responsible for executing the next one if the request is to continue through the pipeline. |      * The next policy in the pipeline. Each policy is responsible for executing the next one if the request is to continue through the pipeline. | ||||||
|      */ |      */ | ||||||
|     _nextPolicy, |     _nextPolicy,  | ||||||
|     /** |     /** | ||||||
|      * The options that can be passed to a given request policy. |      * The options that can be passed to a given request policy. | ||||||
|      */ |      */ | ||||||
|  | @ -10730,7 +10730,7 @@ function createTokenCycler(credential, scopes, tokenCyclerOptions) { | ||||||
|             const tryGetAccessToken = () => credential.getToken(scopes, getTokenOptions); |             const tryGetAccessToken = () => credential.getToken(scopes, getTokenOptions); | ||||||
|             // Take advantage of promise chaining to insert an assignment to `token`
 |             // Take advantage of promise chaining to insert an assignment to `token`
 | ||||||
|             // before the refresh can be considered done.
 |             // before the refresh can be considered done.
 | ||||||
|             refreshWorker = beginRefresh(tryGetAccessToken, options.retryIntervalInMs, |             refreshWorker = beginRefresh(tryGetAccessToken, options.retryIntervalInMs,  | ||||||
|             // If we don't have a token, then we should timeout immediately
 |             // If we don't have a token, then we should timeout immediately
 | ||||||
|             (_a = token === null || token === void 0 ? void 0 : token.expiresOnTimestamp) !== null && _a !== void 0 ? _a : Date.now()) |             (_a = token === null || token === void 0 ? void 0 : token.expiresOnTimestamp) !== null && _a !== void 0 ? _a : Date.now()) | ||||||
|                 .then((_token) => { |                 .then((_token) => { | ||||||
|  | @ -11537,7 +11537,7 @@ class ServiceClient { | ||||||
|      * @param credentials - The credentials used for authentication with the service. |      * @param credentials - The credentials used for authentication with the service. | ||||||
|      * @param options - The service client options that govern the behavior of the client. |      * @param options - The service client options that govern the behavior of the client. | ||||||
|      */ |      */ | ||||||
|     constructor(credentials, |     constructor(credentials,  | ||||||
|     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options */ |     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options */ | ||||||
|     options) { |     options) { | ||||||
|         if (!options) { |         if (!options) { | ||||||
|  | @ -31082,7 +31082,7 @@ function createTokenCycler(credential, scopes, tokenCyclerOptions) { | ||||||
|             const tryGetAccessToken = () => credential.getToken(scopes, getTokenOptions); |             const tryGetAccessToken = () => credential.getToken(scopes, getTokenOptions); | ||||||
|             // Take advantage of promise chaining to insert an assignment to `token`
 |             // Take advantage of promise chaining to insert an assignment to `token`
 | ||||||
|             // before the refresh can be considered done.
 |             // before the refresh can be considered done.
 | ||||||
|             refreshWorker = beginRefresh(tryGetAccessToken, options.retryIntervalInMs, |             refreshWorker = beginRefresh(tryGetAccessToken, options.retryIntervalInMs,  | ||||||
|             // If we don't have a token, then we should timeout immediately
 |             // If we don't have a token, then we should timeout immediately
 | ||||||
|             (_a = token === null || token === void 0 ? void 0 : token.expiresOnTimestamp) !== null && _a !== void 0 ? _a : Date.now()) |             (_a = token === null || token === void 0 ? void 0 : token.expiresOnTimestamp) !== null && _a !== void 0 ? _a : Date.now()) | ||||||
|                 .then((_token) => { |                 .then((_token) => { | ||||||
|  | @ -35502,7 +35502,7 @@ const fsCreateReadStream = fs__namespace.createReadStream; | ||||||
|  * append blob, or page blob. |  * append blob, or page blob. | ||||||
|  */ |  */ | ||||||
| class BlobClient extends StorageClient { | class BlobClient extends StorageClient { | ||||||
|     constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions, |     constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions,  | ||||||
|     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 |     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 | ||||||
|     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ |     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ | ||||||
|     options) { |     options) { | ||||||
|  | @ -36547,7 +36547,7 @@ class BlobClient extends StorageClient { | ||||||
|  * AppendBlobClient defines a set of operations applicable to append blobs. |  * AppendBlobClient defines a set of operations applicable to append blobs. | ||||||
|  */ |  */ | ||||||
| class AppendBlobClient extends BlobClient { | class AppendBlobClient extends BlobClient { | ||||||
|     constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions, |     constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions,  | ||||||
|     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 |     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 | ||||||
|     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ |     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ | ||||||
|     options) { |     options) { | ||||||
|  | @ -36803,7 +36803,7 @@ class AppendBlobClient extends BlobClient { | ||||||
|  * BlockBlobClient defines a set of operations applicable to block blobs. |  * BlockBlobClient defines a set of operations applicable to block blobs. | ||||||
|  */ |  */ | ||||||
| class BlockBlobClient extends BlobClient { | class BlockBlobClient extends BlobClient { | ||||||
|     constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions, |     constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions,  | ||||||
|     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 |     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 | ||||||
|     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ |     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ | ||||||
|     options) { |     options) { | ||||||
|  | @ -37429,7 +37429,7 @@ class BlockBlobClient extends BlobClient { | ||||||
|                 if (options.onProgress) { |                 if (options.onProgress) { | ||||||
|                     options.onProgress({ loadedBytes: transferProgress }); |                     options.onProgress({ loadedBytes: transferProgress }); | ||||||
|                 } |                 } | ||||||
|             }, |             },  | ||||||
|             // concurrency should set a smaller value than maxConcurrency, which is helpful to
 |             // concurrency should set a smaller value than maxConcurrency, which is helpful to
 | ||||||
|             // reduce the possibility when a outgoing handler waits for stream data, in
 |             // reduce the possibility when a outgoing handler waits for stream data, in
 | ||||||
|             // this situation, outgoing handlers are blocked.
 |             // this situation, outgoing handlers are blocked.
 | ||||||
|  | @ -37454,7 +37454,7 @@ class BlockBlobClient extends BlobClient { | ||||||
|  * PageBlobClient defines a set of operations applicable to page blobs. |  * PageBlobClient defines a set of operations applicable to page blobs. | ||||||
|  */ |  */ | ||||||
| class PageBlobClient extends BlobClient { | class PageBlobClient extends BlobClient { | ||||||
|     constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions, |     constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions,  | ||||||
|     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 |     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 | ||||||
|     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ |     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ | ||||||
|     options) { |     options) { | ||||||
|  | @ -38712,7 +38712,7 @@ class BatchHeaderFilterPolicyFactory { | ||||||
|  * @see https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch
 |  * @see https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch
 | ||||||
|  */ |  */ | ||||||
| class BlobBatchClient { | class BlobBatchClient { | ||||||
|     constructor(url, credentialOrPipeline, |     constructor(url, credentialOrPipeline,  | ||||||
|     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 |     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 | ||||||
|     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ |     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ | ||||||
|     options) { |     options) { | ||||||
|  | @ -38744,7 +38744,7 @@ class BlobBatchClient { | ||||||
|     createBatch() { |     createBatch() { | ||||||
|         return new BlobBatch(); |         return new BlobBatch(); | ||||||
|     } |     } | ||||||
|     async deleteBlobs(urlsOrBlobClients, credentialOrOptions, |     async deleteBlobs(urlsOrBlobClients, credentialOrOptions,  | ||||||
|     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 |     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 | ||||||
|     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ |     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ | ||||||
|     options) { |     options) { | ||||||
|  | @ -38759,7 +38759,7 @@ class BlobBatchClient { | ||||||
|         } |         } | ||||||
|         return this.submitBatch(batch); |         return this.submitBatch(batch); | ||||||
|     } |     } | ||||||
|     async setBlobsAccessTier(urlsOrBlobClients, credentialOrTier, tierOrOptions, |     async setBlobsAccessTier(urlsOrBlobClients, credentialOrTier, tierOrOptions,  | ||||||
|     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 |     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 | ||||||
|     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ |     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ | ||||||
|     options) { |     options) { | ||||||
|  | @ -38851,7 +38851,7 @@ class BlobBatchClient { | ||||||
|  * A ContainerClient represents a URL to the Azure Storage container allowing you to manipulate its blobs. |  * A ContainerClient represents a URL to the Azure Storage container allowing you to manipulate its blobs. | ||||||
|  */ |  */ | ||||||
| class ContainerClient extends StorageClient { | class ContainerClient extends StorageClient { | ||||||
|     constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, |     constructor(urlOrConnectionString, credentialOrPipelineOrContainerName,  | ||||||
|     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 |     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 | ||||||
|     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ |     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ | ||||||
|     options) { |     options) { | ||||||
|  | @ -40565,7 +40565,7 @@ function generateAccountSASQueryParameters(accountSASSignatureValues, sharedKeyC | ||||||
|  * to manipulate blob containers. |  * to manipulate blob containers. | ||||||
|  */ |  */ | ||||||
| class BlobServiceClient extends StorageClient { | class BlobServiceClient extends StorageClient { | ||||||
|     constructor(url, credentialOrPipeline, |     constructor(url, credentialOrPipeline,  | ||||||
|     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 |     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 | ||||||
|     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ |     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ | ||||||
|     options) { |     options) { | ||||||
|  | @ -40597,7 +40597,7 @@ class BlobServiceClient extends StorageClient { | ||||||
|      *                                  `BlobEndpoint=https://myaccount.blob.core.windows.net/;QueueEndpoint=https://myaccount.queue.core.windows.net/;FileEndpoint=https://myaccount.file.core.windows.net/;TableEndpoint=https://myaccount.table.core.windows.net/;SharedAccessSignature=sasString` |      *                                  `BlobEndpoint=https://myaccount.blob.core.windows.net/;QueueEndpoint=https://myaccount.queue.core.windows.net/;FileEndpoint=https://myaccount.file.core.windows.net/;TableEndpoint=https://myaccount.table.core.windows.net/;SharedAccessSignature=sasString` | ||||||
|      * @param options - Optional. Options to configure the HTTP pipeline. |      * @param options - Optional. Options to configure the HTTP pipeline. | ||||||
|      */ |      */ | ||||||
|     static fromConnectionString(connectionString, |     static fromConnectionString(connectionString,  | ||||||
|     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 |     // Legacy, no fix for eslint error without breaking. Disable it for this interface.
 | ||||||
|     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ |     /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ | ||||||
|     options) { |     options) { | ||||||
|  | @ -59331,7 +59331,6 @@ var Outputs; | ||||||
|     Outputs["CacheHit"] = "cache-hit"; |     Outputs["CacheHit"] = "cache-hit"; | ||||||
|     Outputs["CachePrimaryKey"] = "cache-primary-key"; |     Outputs["CachePrimaryKey"] = "cache-primary-key"; | ||||||
|     Outputs["CacheMatchedKey"] = "cache-matched-key"; // Output from restore action
 |     Outputs["CacheMatchedKey"] = "cache-matched-key"; // Output from restore action
 | ||||||
|     Outputs["CachePath"] = "cache-path"; |  | ||||||
| })(Outputs = exports.Outputs || (exports.Outputs = {})); | })(Outputs = exports.Outputs || (exports.Outputs = {})); | ||||||
| var State; | var State; | ||||||
| (function (State) { | (function (State) { | ||||||
|  | @ -59408,10 +59407,6 @@ function restoreImpl(stateProvider, earlyExit) { | ||||||
|             const primaryKey = core.getInput(constants_1.Inputs.Key, { required: true }); |             const primaryKey = core.getInput(constants_1.Inputs.Key, { required: true }); | ||||||
|             stateProvider.setState(constants_1.State.CachePrimaryKey, primaryKey); |             stateProvider.setState(constants_1.State.CachePrimaryKey, primaryKey); | ||||||
|             const restoreKeys = utils.getInputAsArray(constants_1.Inputs.RestoreKeys); |             const restoreKeys = utils.getInputAsArray(constants_1.Inputs.RestoreKeys); | ||||||
| 
 |  | ||||||
|             // Output the inputted path unchanged
 |  | ||||||
|             core.setOutput(constants_1.Outputs.CachePath, core.getInput(constants_1.Inputs.Path)); |  | ||||||
| 
 |  | ||||||
|             const cachePaths = utils.getInputAsArray(constants_1.Inputs.Path, { |             const cachePaths = utils.getInputAsArray(constants_1.Inputs.Path, { | ||||||
|                 required: true |                 required: true | ||||||
|             }); |             }); | ||||||
|  | @ -59828,7 +59823,7 @@ module.exports = JSON.parse('[[[0,44],"disallowed_STD3_valid"],[[45,46],"valid"] | ||||||
| /************************************************************************/ | /************************************************************************/ | ||||||
| /******/ 	// The module cache
 | /******/ 	// The module cache
 | ||||||
| /******/ 	var __webpack_module_cache__ = {}; | /******/ 	var __webpack_module_cache__ = {}; | ||||||
| /******/ | /******/ 	 | ||||||
| /******/ 	// The require function
 | /******/ 	// The require function
 | ||||||
| /******/ 	function __nccwpck_require__(moduleId) { | /******/ 	function __nccwpck_require__(moduleId) { | ||||||
| /******/ 		// Check if module is in cache
 | /******/ 		// Check if module is in cache
 | ||||||
|  | @ -59842,7 +59837,7 @@ module.exports = JSON.parse('[[[0,44],"disallowed_STD3_valid"],[[45,46],"valid"] | ||||||
| /******/ 			// no module.loaded needed
 | /******/ 			// no module.loaded needed
 | ||||||
| /******/ 			exports: {} | /******/ 			exports: {} | ||||||
| /******/ 		}; | /******/ 		}; | ||||||
| /******/ | /******/ 	 | ||||||
| /******/ 		// Execute the module function
 | /******/ 		// Execute the module function
 | ||||||
| /******/ 		var threw = true; | /******/ 		var threw = true; | ||||||
| /******/ 		try { | /******/ 		try { | ||||||
|  | @ -59851,16 +59846,16 @@ module.exports = JSON.parse('[[[0,44],"disallowed_STD3_valid"],[[45,46],"valid"] | ||||||
| /******/ 		} finally { | /******/ 		} finally { | ||||||
| /******/ 			if(threw) delete __webpack_module_cache__[moduleId]; | /******/ 			if(threw) delete __webpack_module_cache__[moduleId]; | ||||||
| /******/ 		} | /******/ 		} | ||||||
| /******/ | /******/ 	 | ||||||
| /******/ 		// Return the exports of the module
 | /******/ 		// Return the exports of the module
 | ||||||
| /******/ 		return module.exports; | /******/ 		return module.exports; | ||||||
| /******/ 	} | /******/ 	} | ||||||
| /******/ | /******/ 	 | ||||||
| /************************************************************************/ | /************************************************************************/ | ||||||
| /******/ 	/* webpack/runtime/compat */ | /******/ 	/* webpack/runtime/compat */ | ||||||
| /******/ | /******/ 	 | ||||||
| /******/ 	if (typeof __nccwpck_require__ !== 'undefined') __nccwpck_require__.ab = __dirname + "/"; | /******/ 	if (typeof __nccwpck_require__ !== 'undefined') __nccwpck_require__.ab = __dirname + "/"; | ||||||
| /******/ | /******/ 	 | ||||||
| /************************************************************************/ | /************************************************************************/ | ||||||
| var __webpack_exports__ = {}; | var __webpack_exports__ = {}; | ||||||
| // This entry need to be wrapped in an IIFE because it need to be in strict mode.
 | // This entry need to be wrapped in an IIFE because it need to be in strict mode.
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Ella Kramer
						Ella Kramer