From d4742d5daf6f84329e5bf64654e208c2758258b9 Mon Sep 17 00:00:00 2001 From: Bazyli Cyran Date: Wed, 1 Nov 2023 08:14:37 +0100 Subject: [PATCH] chore: Ignore new lint warn --- bumper/check.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumper/check.go b/bumper/check.go index 5d80dc7..d8d703c 100644 --- a/bumper/check.go +++ b/bumper/check.go @@ -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) } }