diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9836bdb..f1623b5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: run: | make release-notes - name: Release - uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631 # tag=v2.2.2 + uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # tag=v2.3.2 with: draft: true files: out/* diff --git a/api/v1alpha1/zz_generated.deepcopy.go b/api/v1alpha1/zz_generated.deepcopy.go index 3836dbf..6d4f29f 100644 --- a/api/v1alpha1/zz_generated.deepcopy.go +++ b/api/v1alpha1/zz_generated.deepcopy.go @@ -22,32 +22,32 @@ package v1alpha1 import ( "k8s.io/api/core/v1" - runtime "k8s.io/apimachinery/pkg/runtime" + "k8s.io/apimachinery/pkg/runtime" "sigs.k8s.io/cluster-api/api/v1beta1" ) // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (c *Cdk8sAppProxy) DeepCopyInto(out *Cdk8sAppProxy) { - *out = *c - out.TypeMeta = c.TypeMeta - c.ObjectMeta.DeepCopyInto(&out.ObjectMeta) - c.Spec.DeepCopyInto(&out.Spec) - c.Status.DeepCopyInto(&out.Status) +func (in *Cdk8sAppProxy) DeepCopyInto(out *Cdk8sAppProxy) { + *out = *in + out.TypeMeta = in.TypeMeta + in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) + in.Spec.DeepCopyInto(&out.Spec) + in.Status.DeepCopyInto(&out.Status) } // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Cdk8sAppProxy. -func (c *Cdk8sAppProxy) DeepCopy() *Cdk8sAppProxy { - if c == nil { +func (in *Cdk8sAppProxy) DeepCopy() *Cdk8sAppProxy { + if in == nil { return nil } out := new(Cdk8sAppProxy) - c.DeepCopyInto(out) + in.DeepCopyInto(out) return out } // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. -func (c *Cdk8sAppProxy) DeepCopyObject() runtime.Object { - if c := c.DeepCopy(); c != nil { +func (in *Cdk8sAppProxy) DeepCopyObject() runtime.Object { + if c := in.DeepCopy(); c != nil { return c } return nil