Skip to content

Commit b902a4c

Browse files
Merge pull request #409 from srivastav-abhishek/go-1.24
Upgrade go to 1.24 to be in sync with upstream
2 parents 309e7af + 44b7498 commit b902a4c

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

.github/config/constants.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
GO_VERSION: "1.23"
1+
GO_VERSION: "1.24"
2+

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Build the manager binary
22

33
# Define a default value for GO_VERSION if not passed
4-
ARG GO_VERSION=1.23
4+
ARG GO_VERSION=1.24
55

66
FROM --platform=$BUILDPLATFORM golang:${GO_VERSION} as builder
77
ARG TARGETOS

apis/app/v1alpha1/zz_generated.deepcopy.go

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apis/manageiq/v1alpha1/zz_generated.deepcopy.go

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controllers/app/service_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func (r *ServiceReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ct
100100
service.Status.State = appv1alpha1.ServiceStateError
101101
message := fmt.Sprintf("catalog %s not in ready state", service.Spec.Catalog.Name)
102102
service.Status.Message = message
103-
return ctrl.Result{}, errors.Errorf(message)
103+
return ctrl.Result{}, fmt.Errorf("%s", message)
104104
}
105105

106106
service.OwnerReferences = capiutil.EnsureOwnerRef(service.OwnerReferences, metav1.OwnerReference{

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/PDeXchange/pac
22

3-
go 1.23.0
3+
go 1.24.0
44

5-
toolchain go1.23.1
5+
toolchain go1.24.1
66

77
replace github.com/Nerzal/gocloak/v13 => github.com/PDeXchange/gocloak/v13 v13.7.0-p1
88

0 commit comments

Comments
 (0)