Skip to content

Commit

Permalink
chore: Ignore new lint warn
Browse files Browse the repository at this point in the history
  • Loading branch information
bcyran committed Nov 1, 2023
1 parent 83c82b8 commit d4742d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bumper/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func (result *checkActionResult) String() string {
return fmt.Sprintf("%s → %s", result.currentVersion, result.upstreamVersion)
} else if result.cmpResult == 0 {
return result.currentVersion.GetVersionStr()
} else {
} else { // nolint:revive
return fmt.Sprintf("%s < %s !", result.upstreamVersion, result.currentVersion)
}
}
Expand Down

0 comments on commit d4742d5

Please sign in to comment.