Skip to content

Commit

Permalink
fix: close code tag
Browse files Browse the repository at this point in the history
  • Loading branch information
mhrabovcin committed Feb 21, 2024
1 parent 2f59e86 commit d861429
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/copacetic-action/pkg/patch/report.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ func WriteMarkdown(ctx context.Context, report Report, w io.Writer, printCVEs bo
}

if printCVEs {
mdRow[0] = fmt.Sprintf("<code>%s<code><br>%s", row.Image, scanImage(ctx, row.Image))
mdRow[1] = fmt.Sprintf("<code>%s<code><br>%s", row.Patched, scanImage(ctx, row.Patched))
mdRow[0] = fmt.Sprintf("<code>%s</code><br>%s", row.Image, scanImage(ctx, row.Image))
mdRow[1] = fmt.Sprintf("<code>%s</code><br>%s", row.Patched, scanImage(ctx, row.Patched))
}

if row.Error != "" {
Expand Down

0 comments on commit d861429

Please sign in to comment.