File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -336,12 +336,14 @@ func (m *Ci) CiIntegration(
336336 lintOutputName , _ := lintOutput .Name (ctx )
337337 securityScanName , _ := securityScan .Name (ctx )
338338 vulnerabilityScanName , _ := vulnerabilityScan .Name (ctx )
339+ sbomName , _ := sbom .Name (ctx )
339340 result_container := dag .Container ().
340341 WithWorkdir ("/tmp/out" ).
341342 WithFile (fmt .Sprintf ("/tmp/out/lint/%s" , lintOutputName ), lintOutput ).
342343 WithFile (fmt .Sprintf ("/tmp/out/scan/%s" , securityScanName ), securityScan ).
343344 WithDirectory ("/tmp/out/unit-tests/" , testReports ).
344- WithFile (fmt .Sprintf ("/tmp/out/vuln/%s" , vulnerabilityScanName ), vulnerabilityScan )
345+ WithFile (fmt .Sprintf ("/tmp/out/vuln/%s" , vulnerabilityScanName ), vulnerabilityScan ).
346+ WithFile (fmt .Sprintf ("/tmp/out/sbom/%s" , sbomName ), sbom )
345347 return result_container .
346348 Directory ("." )
347349}
You can’t perform that action at this time.
0 commit comments