Skip to content

Commit 472b282

Browse files
committed
(chore) advance modules
1 parent 1c7de7d commit 472b282

File tree

9 files changed

+227
-226
lines changed

9 files changed

+227
-226
lines changed

.github/workflows/main.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
- name: checkout
1616
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1717
- name: Set up Go
18-
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
18+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
1919
with:
20-
go-version: 1.23.2
20+
go-version: 1.23.5
2121
- name: Build
2222
run: make build
2323
- name: FMT
@@ -34,9 +34,9 @@ jobs:
3434
- name: checkout
3535
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3636
- name: Set up Go
37-
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
37+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
3838
with:
39-
go-version: 1.23.2
39+
go-version: 1.23.5
4040
- name: ut
4141
run: make test
4242
env:
@@ -47,9 +47,9 @@ jobs:
4747
- name: checkout
4848
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4949
- name: Set up Go
50-
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
50+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
5151
with:
52-
go-version: 1.23.2
52+
go-version: 1.23.5
5353
- name: fv
5454
run: make create-cluster fv
5555
env:

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.23.2 AS builder
2+
FROM golang:1.23.5 AS builder
33

44
ARG BUILDOS
55
ARG TARGETARCH

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ GINKGO := $(TOOLS_BIN_DIR)/ginkgo
6666
KIND := $(TOOLS_BIN_DIR)/kind
6767
KUBECTL := $(TOOLS_BIN_DIR)/kubectl
6868

69-
GOLANGCI_LINT_VERSION := "v1.61.0"
70-
CLUSTERCTL_VERSION := "v1.8.5"
69+
GOLANGCI_LINT_VERSION := "v1.62.2"
70+
CLUSTERCTL_VERSION := "v1.9.4"
7171

7272
KUSTOMIZE_VER := v5.3.0
7373
KUSTOMIZE_BIN := kustomize
@@ -164,7 +164,7 @@ endif
164164
# K8S_VERSION for the Kind cluster can be set as environment variable. If not defined,
165165
# this default value is used
166166
ifndef K8S_VERSION
167-
K8S_VERSION := v1.31.0
167+
K8S_VERSION := v1.32.0
168168
endif
169169

170170
KIND_CONFIG ?= kind-cluster.yaml

config/crd/bases/extension.projectsveltos.io_yttsources.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.16.5
6+
controller-gen.kubebuilder.io/version: v0.17.2
77
name: yttsources.extension.projectsveltos.io
88
spec:
99
group: extension.projectsveltos.io

go.mod

+37-37
Original file line numberDiff line numberDiff line change
@@ -1,95 +1,95 @@
11
module github.com/gianlucam76/ytt-controller
22

3-
go 1.23.2
3+
go 1.23.5
44

55
require (
6-
carvel.dev/ytt v0.51.0
6+
carvel.dev/ytt v0.51.1
77
github.com/TwiN/go-color v1.4.1
8-
github.com/fluxcd/pkg/http/fetch v0.12.1
9-
github.com/fluxcd/pkg/tar v0.8.1
8+
github.com/fluxcd/pkg/http/fetch v0.15.0
9+
github.com/fluxcd/pkg/tar v0.11.0
1010
github.com/fluxcd/source-controller/api v1.4.1
1111
github.com/go-logr/logr v1.4.2
12-
github.com/onsi/ginkgo/v2 v2.22.0
13-
github.com/onsi/gomega v1.36.0
12+
github.com/onsi/ginkgo/v2 v2.22.2
13+
github.com/onsi/gomega v1.36.2
1414
github.com/pkg/errors v0.9.1
15-
github.com/projectsveltos/libsveltos v0.43.0
16-
github.com/spf13/pflag v1.0.5
17-
k8s.io/api v0.31.3
18-
k8s.io/apiextensions-apiserver v0.31.3
19-
k8s.io/apimachinery v0.31.3
20-
k8s.io/client-go v0.31.3
21-
k8s.io/component-base v0.31.3
15+
github.com/projectsveltos/libsveltos v0.47.0
16+
github.com/spf13/pflag v1.0.6
17+
k8s.io/api v0.32.1
18+
k8s.io/apiextensions-apiserver v0.32.1
19+
k8s.io/apimachinery v0.32.1
20+
k8s.io/client-go v0.32.1
21+
k8s.io/component-base v0.32.1
2222
k8s.io/klog/v2 v2.130.1
23-
sigs.k8s.io/cluster-api v1.8.5
24-
sigs.k8s.io/controller-runtime v0.19.3
23+
sigs.k8s.io/cluster-api v1.9.4
24+
sigs.k8s.io/controller-runtime v0.20.1
2525
)
2626

2727
require (
2828
github.com/beorn7/perks v1.0.1 // indirect
2929
github.com/blang/semver/v4 v4.0.0 // indirect
3030
github.com/cespare/xxhash/v2 v2.3.0 // indirect
31-
github.com/cyphar/filepath-securejoin v0.3.2 // indirect
31+
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
3232
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3333
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
3434
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
3535
github.com/fluxcd/pkg/apis/acl v0.3.0 // indirect
3636
github.com/fluxcd/pkg/apis/meta v1.6.1 // indirect
37+
github.com/fsnotify/fsnotify v1.7.0 // indirect
3738
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
3839
github.com/go-openapi/jsonpointer v0.21.0 // indirect
3940
github.com/go-openapi/jsonreference v0.21.0 // indirect
4041
github.com/go-openapi/swag v0.23.0 // indirect
4142
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
4243
github.com/gobuffalo/flect v1.0.3 // indirect
4344
github.com/gogo/protobuf v1.3.2 // indirect
44-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
4545
github.com/golang/protobuf v1.5.4 // indirect
46-
github.com/google/gnostic-models v0.6.8 // indirect
46+
github.com/google/btree v1.1.3 // indirect
47+
github.com/google/gnostic-models v0.6.9 // indirect
4748
github.com/google/go-cmp v0.6.0 // indirect
4849
github.com/google/gofuzz v1.2.0 // indirect
49-
github.com/google/pprof v0.0.0-20241029153458-d1b30febd7db // indirect
50+
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
5051
github.com/google/uuid v1.6.0 // indirect
5152
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
5253
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
5354
github.com/hashicorp/go-version v1.6.0 // indirect
54-
github.com/imdario/mergo v0.3.16 // indirect
5555
github.com/inconshreveable/mousetrap v1.1.0 // indirect
5656
github.com/josharian/intern v1.0.0 // indirect
5757
github.com/json-iterator/go v1.1.12 // indirect
5858
github.com/k14s/starlark-go v0.0.0-20200720175618-3a5c849cc368 // indirect
5959
github.com/klauspost/compress v1.17.9 // indirect
60-
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
60+
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
6161
github.com/mailru/easyjson v0.7.7 // indirect
6262
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
6363
github.com/modern-go/reflect2 v1.0.2 // indirect
6464
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
6565
github.com/opencontainers/go-digest v1.0.0 // indirect
66-
github.com/opencontainers/go-digest/blake3 v0.0.0-20231025023718-d50d2fec9c98 // indirect
66+
github.com/opencontainers/go-digest/blake3 v0.0.0-20240426182413-22b78e47854a // indirect
6767
github.com/prometheus/client_golang v1.20.4 // indirect
6868
github.com/prometheus/client_model v0.6.1 // indirect
6969
github.com/prometheus/common v0.60.0 // indirect
7070
github.com/prometheus/procfs v0.15.1 // indirect
7171
github.com/spf13/cobra v1.8.1 // indirect
7272
github.com/x448/float16 v0.8.4 // indirect
73-
github.com/zeebo/blake3 v0.2.3 // indirect
73+
github.com/zeebo/blake3 v0.2.4 // indirect
7474
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
75-
golang.org/x/net v0.30.0 // indirect
76-
golang.org/x/oauth2 v0.23.0 // indirect
77-
golang.org/x/sys v0.26.0 // indirect
78-
golang.org/x/term v0.25.0 // indirect
79-
golang.org/x/text v0.20.0 // indirect
80-
golang.org/x/time v0.6.0 // indirect
81-
golang.org/x/tools v0.26.0 // indirect
75+
golang.org/x/net v0.34.0 // indirect
76+
golang.org/x/oauth2 v0.24.0 // indirect
77+
golang.org/x/sync v0.11.0 // indirect
78+
golang.org/x/sys v0.29.0 // indirect
79+
golang.org/x/term v0.28.0 // indirect
80+
golang.org/x/text v0.22.0 // indirect
81+
golang.org/x/time v0.7.0 // indirect
82+
golang.org/x/tools v0.28.0 // indirect
8283
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
83-
google.golang.org/protobuf v1.35.1 // indirect
84+
google.golang.org/protobuf v1.36.1 // indirect
8485
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
8586
gopkg.in/inf.v0 v0.9.1 // indirect
86-
gopkg.in/yaml.v2 v2.4.0 // indirect
8787
gopkg.in/yaml.v3 v3.0.1 // indirect
88-
k8s.io/kube-openapi v0.0.0-20240903163716-9e1beecbcb38 // indirect
89-
k8s.io/kubectl v0.31.3 // indirect
90-
k8s.io/utils v0.0.0-20241104163129-6fe5fd82f078 // indirect
91-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
92-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
88+
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
89+
k8s.io/kubectl v0.32.1 // indirect
90+
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect
91+
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
92+
sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect
9393
sigs.k8s.io/yaml v1.4.0 // indirect
9494
)
9595

0 commit comments

Comments
 (0)