mirror of
				https://gitea.com/actions/cache.git
				synced 2025-10-31 07:47:07 +00:00 
			
		
		
		
	Turning error from any to unknown
This commit is contained in:
		| @@ -4,6 +4,11 @@ import * as core from "@actions/core"; | ||||
| import { Events, Inputs, State } from "./constants"; | ||||
| import * as utils from "./utils/actionUtils"; | ||||
|  | ||||
| interface RestoreError { | ||||
|     name: string; | ||||
|     message: string; | ||||
| } | ||||
|  | ||||
| async function run(): Promise<void> { | ||||
|     try { | ||||
|         if (!utils.isCacheFeatureAvailable()) { | ||||
| @@ -52,16 +57,17 @@ async function run(): Promise<void> { | ||||
|             utils.setCacheHitOutput(isExactKeyMatch); | ||||
|  | ||||
|             core.info(`Cache restored from key: ${cacheKey}`); | ||||
|         } catch (error: any) { | ||||
|             if (error.name === cache.ValidationError.name) { | ||||
|         } catch (error: unknown) { | ||||
|             const typedError = error as Error; | ||||
|             if (typedError.name === cache.ValidationError.name) { | ||||
|                 throw error; | ||||
|             } else { | ||||
|                 utils.logWarning(error.message); | ||||
|                 utils.logWarning(typedError.message); | ||||
|                 utils.setCacheHitOutput(false); | ||||
|             } | ||||
|         } | ||||
|     } catch (error: any) { | ||||
|         core.setFailed(error.message); | ||||
|     } catch (error: unknown) { | ||||
|         core.setFailed((error as Error ).message); | ||||
|     } | ||||
| } | ||||
|  | ||||
|   | ||||
							
								
								
									
										15
									
								
								src/save.ts
									
									
									
									
									
								
							
							
						
						
									
										15
									
								
								src/save.ts
									
									
									
									
									
								
							| @@ -49,17 +49,18 @@ async function run(): Promise<void> { | ||||
|                 uploadChunkSize: utils.getInputAsInt(Inputs.UploadChunkSize) | ||||
|             }); | ||||
|             core.info(`Cache saved with key: ${primaryKey}`); | ||||
|         } catch (error: any) { | ||||
|             if (error.name === cache.ValidationError.name) { | ||||
|         } catch (error: unknown) { | ||||
|             const typedError = error as Error; | ||||
|             if (typedError.name === cache.ValidationError.name) { | ||||
|                 throw error; | ||||
|             } else if (error.name === cache.ReserveCacheError.name) { | ||||
|                 core.info(error.message); | ||||
|             } else if (typedError.name === cache.ReserveCacheError.name) { | ||||
|                 core.info(typedError.message); | ||||
|             } else { | ||||
|                 utils.logWarning(error.message); | ||||
|                 utils.logWarning(typedError.message); | ||||
|             } | ||||
|         } | ||||
|     } catch (error: any) { | ||||
|         utils.logWarning(error.message); | ||||
|     } catch (error: unknown) { | ||||
|         utils.logWarning((error as Error).message); | ||||
|     } | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Deepak Dahiya
					Deepak Dahiya