File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ function addVulnsByLayerTableToSummary(data: Report) {
41
41
if ( ! data . result . layers ) {
42
42
return
43
43
}
44
-
44
+ core . summary . addSeparator ( ) ;
45
45
core . summary . addHeading ( `Package vulnerabilities per layer` )
46
46
47
47
let packagesPerLayer : { [ key : string ] : Package [ ] } = { }
@@ -52,7 +52,7 @@ function addVulnsByLayerTableToSummary(data: Report) {
52
52
} )
53
53
54
54
data . result . layers . forEach ( ( layer , index ) => {
55
- core . summary . addHeading ( `LAYER ${ index } - ${ layer . command } ` , 4 ) ;
55
+ core . summary . addHeading ( `LAYER ${ index } - ${ layer . command . replace ( '$' , "$" ) } ` , 4 ) ;
56
56
57
57
if ( ! layer . digest ) {
58
58
return ;
@@ -106,6 +106,7 @@ function addReportToSummary(data: Report) {
106
106
let packages = data . result . packages ;
107
107
108
108
policyEvaluations . forEach ( policy => {
109
+ core . summary . addSeparator ( )
109
110
core . summary . addHeading ( `${ EVALUATION [ policy . evaluationResult ] } Policy: ${ policy . name } ` , 2 )
110
111
111
112
if ( policy . evaluationResult != "passed" ) {
You can’t perform that action at this time.
0 commit comments