Skip to content

Commit

Permalink
Update dependency architect to v5.5.0 (#1752)
Browse files Browse the repository at this point in the history
* Update dependency architect to v5.5.0

* lint issues

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Daniel Simionato <[email protected]>
  • Loading branch information
renovate[bot] and weseven authored Aug 20, 2024
1 parent 7e40f3b commit cf49746
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2.1

orbs:
architect: giantswarm/architect@5.4.0
architect: giantswarm/architect@5.5.0

workflows:
build:
Expand Down
2 changes: 1 addition & 1 deletion service/controller/key/key.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func CertConfigCertOperatorVersion(cr v1alpha1.CertConfig) string {
func DNSIP(clusterIPRange string) (string, error) {
ip, _, err := net.ParseCIDR(clusterIPRange)
if err != nil {
return "", microerror.Maskf(invalidConfigError, err.Error())
return "", microerror.Maskf(invalidConfigError, err.Error()) //nolint:all
}

// Only IPV4 CIDRs are supported.
Expand Down
2 changes: 1 addition & 1 deletion service/internal/tenantclient/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func (c *TenantClient) K8sClient(ctx context.Context, obj interface{}) (k8sclien

k8sClient, err = k8sclient.NewClients(c)
if err != nil {
return nil, microerror.Maskf(notAvailableError, err.Error())
return nil, microerror.Maskf(notAvailableError, err.Error()) //nolint:all
}
}

Expand Down

0 comments on commit cf49746

Please sign in to comment.