Skip to content

Commit

Permalink
chore(deps): update dependency golangci/golangci-lint to v1.59.1
Browse files Browse the repository at this point in the history
  • Loading branch information
crossplane-renovate[bot] authored Aug 12, 2024
1 parent 6bdfe33 commit d8bc0df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ go-test:

# go-lint lints Go code.
go-lint:
ARG GOLANGCI_LINT_VERSION=v1.59.0
ARG GOLANGCI_LINT_VERSION=v1.59.1
FROM +go-modules
# This cache is private because golangci-lint doesn't support concurrent runs.
CACHE --id go-lint --sharing private /root/.cache/golangci-lint
Expand Down
2 changes: 1 addition & 1 deletion pkg/reconciler/providerconfig/reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ func (r *Reconciler) Reconcile(ctx context.Context, req reconcile.Request) (reco
if err := r.client.Delete(ctx, pcu); resource.IgnoreNotFound(err) != nil {
log.Debug(errDeletePCU, "error", err)
r.record.Event(pc, event.Warning(reasonAccount, errors.Wrap(err, errDeletePCU)))
return reconcile.Result{RequeueAfter: shortWait}, nil //nolint:nilerr // Returning err would make us requeue instantly.
return reconcile.Result{RequeueAfter: shortWait}, nil
}
users--
}
Expand Down

0 comments on commit d8bc0df

Please sign in to comment.