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 d861429 commit 8c931a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/copacetic-action/pkg/patch/report.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ func scanImage(ctx context.Context, imageRef string) string {

parts := []string{}
for severity, count := range counts {
parts = append(parts, fmt.Sprintf("<code>%d<code> <b>%s</b>", count, severity))
parts = append(parts, fmt.Sprintf("<code>%d</code> <b>%s</b>", count, severity))
}
return strings.Join(parts, " ")
}

0 comments on commit 8c931a4

Please sign in to comment.