Skip to content

Commit 6f7cc51

Browse files
Upgrade golangci from 1.63.4 to 1.64.8 (#6940)
Signed-off-by: Camila Macedo <7708031+camilamacedo86@users.noreply.github.com>
1 parent 910c719 commit 6f7cc51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ fix: ## Fixup files in the repo.
5858

5959
.PHONY: setup-lint
6060
setup-lint: ## Setup the lint
61-
$(SCRIPTS_DIR)/fetch golangci-lint 1.62.2
61+
$(SCRIPTS_DIR)/fetch golangci-lint 1.64.8
6262

6363
.PHONY: lint
6464
lint: setup-lint ## Run the lint check

internal/helm/release/manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ func (m manager) CleanupRelease(manifest string) (bool, error) {
430430
if err != nil {
431431
return false, fmt.Errorf("failed to build resources from manifests: %w", err)
432432
}
433-
if resources == nil || len(resources) <= 0 {
433+
if len(resources) <= 0 {
434434
return true, nil
435435
}
436436
for _, resource := range resources {

0 commit comments

Comments
 (0)