mirror of
				https://gitea.com/docker/build-push-action.git
				synced 2025-10-31 00:58:18 +07:00 
			
		
		
		
	Merge pull request #1019 from favonia/warn-about-ignored-inputs
feat: warn about ignored inputs
This commit is contained in:
		
						commit
						9f6f8c940b
					
				
							
								
								
									
										2
									
								
								dist/index.js
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/index.js
									
									
									
										generated
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										2
									
								
								dist/index.js.map
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/index.js.map
									
									
									
										generated
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							| @ -102,11 +102,15 @@ async function getBuildArgs(inputs: Inputs, context: string, toolkit: Toolkit): | |||||||
|     await Util.asyncForEach(inputs.attests, async attest => { |     await Util.asyncForEach(inputs.attests, async attest => { | ||||||
|       args.push('--attest', attest); |       args.push('--attest', attest); | ||||||
|     }); |     }); | ||||||
|  |   } else if (inputs.attests.length > 0) { | ||||||
|  |     core.warning("Attestations are only supported by buildx >= 0.10.0; the input 'attests' is ignored."); | ||||||
|   } |   } | ||||||
|   if (await toolkit.buildx.versionSatisfies('>=0.12.0')) { |   if (await toolkit.buildx.versionSatisfies('>=0.12.0')) { | ||||||
|     await Util.asyncForEach(inputs.annotations, async annotation => { |     await Util.asyncForEach(inputs.annotations, async annotation => { | ||||||
|       args.push('--annotation', annotation); |       args.push('--annotation', annotation); | ||||||
|     }); |     }); | ||||||
|  |   } else if (inputs.annotations.length > 0) { | ||||||
|  |     core.warning("Annotations are only supported by buildx >= 0.12.0; the input 'annotations' is ignored."); | ||||||
|   } |   } | ||||||
|   await Util.asyncForEach(inputs.buildArgs, async buildArg => { |   await Util.asyncForEach(inputs.buildArgs, async buildArg => { | ||||||
|     args.push('--build-arg', buildArg); |     args.push('--build-arg', buildArg); | ||||||
| @ -115,6 +119,8 @@ async function getBuildArgs(inputs: Inputs, context: string, toolkit: Toolkit): | |||||||
|     await Util.asyncForEach(inputs.buildContexts, async buildContext => { |     await Util.asyncForEach(inputs.buildContexts, async buildContext => { | ||||||
|       args.push('--build-context', buildContext); |       args.push('--build-context', buildContext); | ||||||
|     }); |     }); | ||||||
|  |   } else if (inputs.buildContexts.length > 0) { | ||||||
|  |     core.warning("Build contexts are only supported by buildx >= 0.8.0; the input 'build-contexts' is ignored."); | ||||||
|   } |   } | ||||||
|   await Util.asyncForEach(inputs.cacheFrom, async cacheFrom => { |   await Util.asyncForEach(inputs.cacheFrom, async cacheFrom => { | ||||||
|     args.push('--cache-from', cacheFrom); |     args.push('--cache-from', cacheFrom); | ||||||
| @ -169,6 +175,8 @@ async function getBuildArgs(inputs: Inputs, context: string, toolkit: Toolkit): | |||||||
|     if (inputs.sbom) { |     if (inputs.sbom) { | ||||||
|       args.push('--sbom', inputs.sbom); |       args.push('--sbom', inputs.sbom); | ||||||
|     } |     } | ||||||
|  |   } else if (inputs.provenance || inputs.sbom) { | ||||||
|  |     core.warning("Attestations are only supported by buildx >= 0.10.0; the inputs 'provenance' and 'sbom' are ignored."); | ||||||
|   } |   } | ||||||
|   await Util.asyncForEach(inputs.secrets, async secret => { |   await Util.asyncForEach(inputs.secrets, async secret => { | ||||||
|     try { |     try { | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user