Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency architect to v5.5.0 #1752

Merged
merged 2 commits into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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