Skip to content

Commit 312dfb4

Browse files
authored
Merge pull request #76 from gianlucam76/prep
(chore) prepare for release v0.51.1
2 parents c8710ad + 81e6761 commit 312dfb4

File tree

8 files changed

+105
-100
lines changed

8 files changed

+105
-100
lines changed

.github/workflows/main.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
- name: checkout
1717
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1818
- name: Set up Go
19-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
19+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
2020
with:
21-
go-version: 1.23.6
21+
go-version: 1.24.1
2222
- name: Build
2323
run: make build
2424
- name: FMT
@@ -35,9 +35,9 @@ jobs:
3535
- name: checkout
3636
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3737
- name: Set up Go
38-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
38+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
3939
with:
40-
go-version: 1.23.6
40+
go-version: 1.24.1
4141
- name: ut
4242
run: make test
4343
env:
@@ -48,9 +48,9 @@ jobs:
4848
- name: checkout
4949
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5050
- name: Set up Go
51-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
51+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
5252
with:
53-
go-version: 1.23.6
53+
go-version: 1.24.1
5454
- name: fv
5555
run: make create-cluster fv
5656
env:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.23.6 AS builder
2+
FROM golang:1.24.1 AS builder
33

44
ARG BUILDOS
55
ARG TARGETARCH

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ CLUSTERCTL := $(TOOLS_BIN_DIR)/clusterctl
6767
KIND := $(TOOLS_BIN_DIR)/kind
6868
KUBECTL := $(TOOLS_BIN_DIR)/kubectl
6969

70-
GOLANGCI_LINT_VERSION := "v1.62.2"
71-
CLUSTERCTL_VERSION := "v1.9.5"
70+
GOLANGCI_LINT_VERSION := "v1.64.7"
71+
CLUSTERCTL_VERSION := "v1.9.6"
7272

7373
KUSTOMIZE_VER := v5.3.0
7474
KUSTOMIZE_BIN := kustomize

go.mod

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
module github.com/projectsveltos/ui-backend
22

3-
go 1.23.6
3+
go 1.24.1
44

55
require (
66
github.com/TwiN/go-color v1.4.1
77
github.com/fluxcd/source-controller/api v1.5.0
88
github.com/gin-gonic/gin v1.10.0
99
github.com/go-logr/logr v1.4.2
10-
github.com/onsi/ginkgo/v2 v2.23.0
11-
github.com/onsi/gomega v1.36.2
10+
github.com/onsi/ginkgo/v2 v2.23.3
11+
github.com/onsi/gomega v1.36.3
1212
github.com/pkg/errors v0.9.1
13-
github.com/projectsveltos/addon-controller v0.50.0
14-
github.com/projectsveltos/libsveltos v0.50.0
13+
github.com/projectsveltos/addon-controller v0.51.1
14+
github.com/projectsveltos/libsveltos v0.51.1
1515
github.com/spf13/pflag v1.0.6
16-
k8s.io/api v0.32.2
17-
k8s.io/apiextensions-apiserver v0.32.2
18-
k8s.io/apimachinery v0.32.2
19-
k8s.io/client-go v0.32.2
20-
k8s.io/component-base v0.32.2
16+
k8s.io/api v0.32.3
17+
k8s.io/apiextensions-apiserver v0.32.3
18+
k8s.io/apimachinery v0.32.3
19+
k8s.io/client-go v0.32.3
20+
k8s.io/component-base v0.32.3
2121
k8s.io/klog/v2 v2.130.1
22-
sigs.k8s.io/cluster-api v1.9.5
22+
sigs.k8s.io/cluster-api v1.9.6
2323
sigs.k8s.io/controller-runtime v0.20.3
2424
)
2525

@@ -28,7 +28,7 @@ require (
2828
dario.cat/mergo v1.0.1 // indirect
2929
github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6 // indirect
3030
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
31-
github.com/BurntSushi/toml v1.4.0 // indirect
31+
github.com/BurntSushi/toml v1.5.0 // indirect
3232
github.com/MakeNowJust/heredoc v1.0.0 // indirect
3333
github.com/Masterminds/goutils v1.1.1 // indirect
3434
github.com/Masterminds/semver/v3 v3.3.1 // indirect
@@ -45,15 +45,15 @@ require (
4545
github.com/chai2010/gettext-go v1.0.3 // indirect
4646
github.com/cloudwego/base64x v0.1.4 // indirect
4747
github.com/cloudwego/iasm v0.2.0 // indirect
48-
github.com/containerd/containerd v1.7.25 // indirect
48+
github.com/containerd/containerd v1.7.27 // indirect
4949
github.com/containerd/errdefs v1.0.0 // indirect
5050
github.com/containerd/log v0.1.0 // indirect
5151
github.com/containerd/platforms v0.2.1 // indirect
5252
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
5353
github.com/dariubs/percent v1.0.0 // indirect
5454
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
5555
github.com/distribution/reference v0.6.0 // indirect
56-
github.com/docker/cli v28.0.1+incompatible // indirect
56+
github.com/docker/cli v28.0.2+incompatible // indirect
5757
github.com/docker/distribution v2.8.3+incompatible // indirect
5858
github.com/docker/docker v27.5.0+incompatible // indirect
5959
github.com/docker/docker-credential-helpers v0.8.2 // indirect
@@ -92,7 +92,7 @@ require (
9292
github.com/google/btree v1.1.3 // indirect
9393
github.com/google/cel-go v0.22.1 // indirect
9494
github.com/google/gnostic-models v0.6.9 // indirect
95-
github.com/google/go-cmp v0.6.0 // indirect
95+
github.com/google/go-cmp v0.7.0 // indirect
9696
github.com/google/gofuzz v1.2.0 // indirect
9797
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
9898
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
@@ -173,31 +173,31 @@ require (
173173
go.opentelemetry.io/otel/trace v1.31.0 // indirect
174174
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
175175
golang.org/x/arch v0.12.0 // indirect
176-
golang.org/x/crypto v0.35.0 // indirect
176+
golang.org/x/crypto v0.36.0 // indirect
177177
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67 // indirect
178-
golang.org/x/net v0.35.0 // indirect
178+
golang.org/x/net v0.37.0 // indirect
179179
golang.org/x/oauth2 v0.24.0 // indirect
180180
golang.org/x/sync v0.12.0 // indirect
181-
golang.org/x/sys v0.30.0 // indirect
182-
golang.org/x/term v0.29.0 // indirect
181+
golang.org/x/sys v0.31.0 // indirect
182+
golang.org/x/term v0.30.0 // indirect
183183
golang.org/x/text v0.23.0 // indirect
184184
golang.org/x/time v0.8.0 // indirect
185185
golang.org/x/tools v0.30.0 // indirect
186186
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
187187
google.golang.org/genproto/googleapis/api v0.0.0-20241219192143-6b3ec007d9bb // indirect
188188
google.golang.org/genproto/googleapis/rpc v0.0.0-20241219192143-6b3ec007d9bb // indirect
189189
google.golang.org/grpc v1.69.2 // indirect
190-
google.golang.org/protobuf v1.36.1 // indirect
190+
google.golang.org/protobuf v1.36.5 // indirect
191191
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
192192
gopkg.in/inf.v0 v0.9.1 // indirect
193193
gopkg.in/yaml.v3 v3.0.1 // indirect
194-
helm.sh/helm/v3 v3.17.1 // indirect
195-
k8s.io/apiserver v0.32.2 // indirect
196-
k8s.io/cli-runtime v0.32.2 // indirect
194+
helm.sh/helm/v3 v3.17.2 // indirect
195+
k8s.io/apiserver v0.32.3 // indirect
196+
k8s.io/cli-runtime v0.32.3 // indirect
197197
k8s.io/cluster-bootstrap v0.32.0 // indirect
198198
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
199-
k8s.io/kubectl v0.32.2 // indirect
200-
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect
199+
k8s.io/kubectl v0.32.3 // indirect
200+
k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e // indirect
201201
oras.land/oras-go v1.2.6 // indirect
202202
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.0 // indirect
203203
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect

0 commit comments

Comments
 (0)