mirror of
				https://github.com/actions/upload-artifact.git
				synced 2025-10-23 08:56:38 +08:00 
			
		
		
		
	Check for invalid retention-days input
This commit is contained in:
		
							
								
								
									
										3
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							| @@ -6405,6 +6405,9 @@ function getInputs() { | ||||
|     const retentionDaysStr = core.getInput(constants_1.Inputs.RetentionDays); | ||||
|     if (retentionDaysStr) { | ||||
|         inputs.retentionDays = parseInt(retentionDaysStr); | ||||
|         if (isNaN(inputs.retentionDays)) { | ||||
|             core.setFailed('Invalid retention-days'); | ||||
|         } | ||||
|     } | ||||
|     return inputs; | ||||
| } | ||||
|   | ||||
| @@ -31,6 +31,9 @@ export function getInputs(): UploadInputs { | ||||
|   const retentionDaysStr = core.getInput(Inputs.RetentionDays) | ||||
|   if (retentionDaysStr) { | ||||
|     inputs.retentionDays = parseInt(retentionDaysStr) | ||||
|     if (isNaN(inputs.retentionDays)) { | ||||
|       core.setFailed('Invalid retention-days') | ||||
|     } | ||||
|   } | ||||
|  | ||||
|   return inputs | ||||
|   | ||||
		Reference in New Issue
	
	Block a user