| 
									
										
										
										
											2020-05-14 17:27:38 -04:00
										 |  |  | import * as cache from "@actions/cache"; | 
					
						
							| 
									
										
										
										
											2019-10-30 14:48:49 -04:00
										 |  |  | import * as core from "@actions/core"; | 
					
						
							| 
									
										
										
										
											2020-03-18 22:35:13 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-13 10:54:39 -05:00
										 |  |  | import { Events, Inputs, State } from "./constants"; | 
					
						
							| 
									
										
										
										
											2019-10-30 14:48:49 -04:00
										 |  |  | import * as utils from "./utils/actionUtils"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-13 06:48:02 +09:00
										 |  |  | async function run(): Promise<void> { | 
					
						
							| 
									
										
										
										
											2019-10-30 14:48:49 -04:00
										 |  |  |     try { | 
					
						
							| 
									
										
										
										
											2022-03-30 15:46:49 +05:30
										 |  |  |         if (!utils.isCacheFeatureAvailable()) { | 
					
						
							| 
									
										
										
										
											2020-09-29 09:58:32 -05:00
										 |  |  |             utils.setCacheHitOutput(false); | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-30 14:48:49 -04:00
										 |  |  |         // Validate inputs, this can cause task failure
 | 
					
						
							| 
									
										
										
										
											2019-11-13 10:54:39 -05:00
										 |  |  |         if (!utils.isValidEvent()) { | 
					
						
							| 
									
										
										
										
											2019-11-21 14:37:54 -05:00
										 |  |  |             utils.logWarning( | 
					
						
							| 
									
										
										
										
											2019-11-13 10:54:39 -05:00
										 |  |  |                 `Event Validation Error: The event type ${ | 
					
						
							|  |  |  |                     process.env[Events.Key] | 
					
						
							| 
									
										
										
										
											2020-04-17 15:46:46 -04:00
										 |  |  |                 } is not supported because it's not tied to a branch or tag ref.`
 | 
					
						
							| 
									
										
										
										
											2019-11-13 10:54:39 -05:00
										 |  |  |             ); | 
					
						
							| 
									
										
										
										
											2019-11-21 14:37:54 -05:00
										 |  |  |             return; | 
					
						
							| 
									
										
										
										
											2019-11-13 10:54:39 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-30 14:48:49 -04:00
										 |  |  |         const primaryKey = core.getInput(Inputs.Key, { required: true }); | 
					
						
							| 
									
										
										
										
											2020-05-19 13:46:58 -04:00
										 |  |  |         core.saveState(State.CachePrimaryKey, primaryKey); | 
					
						
							| 
									
										
										
										
											2019-10-30 14:48:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-02 10:21:03 -05:00
										 |  |  |         const restoreKeys = utils.getInputAsArray(Inputs.RestoreKeys); | 
					
						
							|  |  |  |         const cachePaths = utils.getInputAsArray(Inputs.Path, { | 
					
						
							|  |  |  |             required: true | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2019-10-30 14:48:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-07 21:56:17 +05:30
										 |  |  |         const cacheKey = await cache.restoreCache( | 
					
						
							|  |  |  |             cachePaths, | 
					
						
							|  |  |  |             primaryKey, | 
					
						
							|  |  |  |             restoreKeys | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!cacheKey) { | 
					
						
							|  |  |  |             core.info( | 
					
						
							|  |  |  |                 `Cache not found for input keys: ${[ | 
					
						
							|  |  |  |                     primaryKey, | 
					
						
							|  |  |  |                     ...restoreKeys | 
					
						
							|  |  |  |                 ].join(", ")}`
 | 
					
						
							| 
									
										
										
										
											2019-10-30 14:48:49 -04:00
										 |  |  |             ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-07 21:56:17 +05:30
										 |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-10-30 14:48:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-07 21:56:17 +05:30
										 |  |  |         // Store the matched cache key
 | 
					
						
							|  |  |  |         utils.setCacheState(cacheKey); | 
					
						
							| 
									
										
										
										
											2019-10-30 14:48:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-07 21:56:17 +05:30
										 |  |  |         const isExactKeyMatch = utils.isExactKeyMatch(primaryKey, cacheKey); | 
					
						
							|  |  |  |         utils.setCacheHitOutput(isExactKeyMatch); | 
					
						
							|  |  |  |         core.info(`Cache restored from key: ${cacheKey}`); | 
					
						
							| 
									
										
										
										
											2022-05-04 12:32:55 +00:00
										 |  |  |     } catch (error: unknown) { | 
					
						
							| 
									
										
										
										
											2022-05-04 13:46:41 +00:00
										 |  |  |         core.setFailed((error as Error).message); | 
					
						
							| 
									
										
										
										
											2019-10-30 14:48:49 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export default run; |