Skip to content

Commit 6e9b68d

Browse files
chore(deps): update grouped non-major updates
1 parent 28b0def commit 6e9b68d

File tree

12 files changed

+172
-91
lines changed

12 files changed

+172
-91
lines changed

.github/workflows/docker-publish.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ jobs:
3535
# https://github.com/sigstore/cosign-installer
3636
- name: Install cosign
3737
if: github.event_name != 'pull_request'
38-
uses: sigstore/cosign-installer@v3.5.0
38+
uses: sigstore/cosign-installer@v3.6.0
3939

4040
# Set up BuildKit Docker container builder to be able to build
4141
# multi-platform images and export cache
4242
# https://github.com/docker/setup-buildx-action
4343
- name: Set up Docker Buildx
44-
uses: docker/setup-buildx-action@v3.3.0
44+
uses: docker/setup-buildx-action@v3.6.1
4545

4646
# Login against a Docker registry except on PR
4747
# https://github.com/docker/login-action
4848
- name: Log into registry ${{ env.REGISTRY }}
4949
if: github.event_name != 'pull_request'
50-
uses: docker/login-action@v3.2.0
50+
uses: docker/login-action@v3.3.0
5151
with:
5252
registry: ${{ env.REGISTRY }}
5353
username: ${{ github.actor }}

.github/workflows/make-test-e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
runs-on: ubuntu-22.04
2525
steps:
2626
- uses: actions/checkout@v4.1.7
27-
- uses: actions/setup-go@v5.0.1
27+
- uses: actions/setup-go@v5.0.2
2828
with:
2929
go-version: 1.22.4
30-
- uses: docker/setup-buildx-action@v3.3.0
30+
- uses: docker/setup-buildx-action@v3.6.1
3131
- uses: tale/kubectl-action@v1.4.0
3232
with:
3333
kubectl-version: v1.30.0

.github/workflows/make-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-22.04
2525
steps:
2626
- uses: actions/checkout@v4.1.7
27-
- uses: actions/setup-go@v5.0.1
27+
- uses: actions/setup-go@v5.0.2
2828
with:
2929
go-version: 1.22.4
3030
- run: |

.github/workflows/nilaway-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-22.04
99
steps:
1010
- uses: actions/checkout@v4.1.7
11-
- uses: actions/setup-go@v5.0.1
11+
- uses: actions/setup-go@v5.0.2
1212
with:
1313
go-version: 1.22.4
1414
- run: make nilaway-lint

.github/workflows/pre-commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-22.04
99
steps:
1010
- uses: actions/checkout@v4.1.7
11-
- uses: actions/setup-go@v5.0.1
11+
- uses: actions/setup-go@v5.0.2
1212
with:
1313
go-version: 1.22.4
1414
- uses: pre-commit/action@v3.0.1

.github/workflows/release-assets.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: write
1616
steps:
1717
- uses: actions/checkout@v4.1.7
18-
- uses: actions/setup-go@v5.0.1
18+
- uses: actions/setup-go@v5.0.2
1919
with:
2020
go-version: 1.22.4
2121
- name: Get tag from current run

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.22.4 AS builder
2+
FROM golang:1.23.0 AS builder
33
ARG TARGETOS TARGETARCH
44

55
WORKDIR /workspace

Makefile

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
IMG ?= ghcr.io/aenix-io/etcd-operator:latest
44
# K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
55
# renovate: datasource=github-tags depName=kubernetes/kubernetes
6-
K8S_VERSION ?= v1.30.0
6+
K8S_VERSION ?= v1.31.0
77
K8S_VERSION_TRIMMED_V = $(subst v,,$(K8S_VERSION))
88

99
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
@@ -165,9 +165,9 @@ KIND_CLUSTER_NAME ?= etcd-operator-kind
165165
NAMESPACE ?= etcd-operator-system
166166

167167
# renovate: datasource=github-tags depName=prometheus-operator/prometheus-operator
168-
PROMETHEUS_OPERATOR_VERSION ?= v0.74.0
168+
PROMETHEUS_OPERATOR_VERSION ?= v0.76.0
169169
# renovate: datasource=github-tags depName=jetstack/cert-manager
170-
CERT_MANAGER_VERSION ?= v1.15.0
170+
CERT_MANAGER_VERSION ?= v1.15.3
171171

172172
ifndef ignore-not-found
173173
ignore-not-found = false
@@ -253,20 +253,20 @@ CRD_REF_DOCS ?= $(LOCALBIN)/crd-ref-docs
253253
# renovate: datasource=github-tags depName=kubernetes-sigs/kustomize
254254
KUSTOMIZE_VERSION ?= v5.3.0
255255
# renovate: datasource=github-tags depName=kubernetes-sigs/controller-tools
256-
CONTROLLER_TOOLS_VERSION ?= v0.15.0
256+
CONTROLLER_TOOLS_VERSION ?= v0.16.1
257257
ENVTEST_VERSION ?= latest
258258
# renovate: datasource=github-tags depName=golangci/golangci-lint
259-
GOLANGCI_LINT_VERSION ?= v1.59.1
259+
GOLANGCI_LINT_VERSION ?= v1.60.1
260260
# renovate: datasource=github-tags depName=kubernetes-sigs/kind
261-
KIND_VERSION ?= v0.23.0
261+
KIND_VERSION ?= v0.24.0
262262
# renovate: datasource=github-tags depName=helm/helm
263-
HELM_VERSION ?= v3.15.2
263+
HELM_VERSION ?= v3.15.4
264264
# renovate: datasource=github-tags depName=losisin/helm-values-schema-json
265-
HELM_SCHEMA_VERSION ?= v1.4.1
265+
HELM_SCHEMA_VERSION ?= v1.5.2
266266
# renovate: datasource=github-tags depName=norwoodj/helm-docs
267-
HELM_DOCS_VERSION ?= v1.13.1
267+
HELM_DOCS_VERSION ?= v1.14.2
268268
# renovate: datasource=github-tags depName=mikefarah/yq
269-
YQ_VERSION ?= v4.44.1
269+
YQ_VERSION ?= v4.44.3
270270

271271
## Tool install scripts
272272
KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh"

go.mod

Lines changed: 35 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -6,41 +6,42 @@ require (
66
github.com/dustin/go-humanize v1.0.1
77
github.com/go-logr/logr v1.4.2
88
github.com/google/uuid v1.6.0
9-
github.com/onsi/ginkgo/v2 v2.19.0
10-
github.com/onsi/gomega v1.33.1
11-
github.com/spf13/cobra v1.7.0
9+
github.com/onsi/ginkgo/v2 v2.20.0
10+
github.com/onsi/gomega v1.34.1
11+
github.com/spf13/cobra v1.8.1
1212
github.com/spf13/pflag v1.0.5
1313
github.com/spf13/viper v1.19.0
14-
go.etcd.io/etcd/client/v3 v3.5.14
15-
k8s.io/api v0.30.2
16-
k8s.io/apimachinery v0.30.2
17-
k8s.io/client-go v0.30.2
18-
k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0
19-
sigs.k8s.io/controller-runtime v0.18.4
14+
go.etcd.io/etcd/client/v3 v3.5.15
15+
k8s.io/api v0.31.0
16+
k8s.io/apimachinery v0.31.0
17+
k8s.io/client-go v0.31.0
18+
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8
19+
sigs.k8s.io/controller-runtime v0.19.0
2020
)
2121

2222
require (
2323
github.com/beorn7/perks v1.0.1 // indirect
24-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
24+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2525
github.com/coreos/go-semver v0.3.1 // indirect
2626
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
2727
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2828
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
2929
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
3030
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
3131
github.com/fsnotify/fsnotify v1.7.0 // indirect
32+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
3233
github.com/go-logr/zapr v1.3.0 // indirect
3334
github.com/go-openapi/jsonpointer v0.19.6 // indirect
3435
github.com/go-openapi/jsonreference v0.20.2 // indirect
35-
github.com/go-openapi/swag v0.22.3 // indirect
36+
github.com/go-openapi/swag v0.22.4 // indirect
3637
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
3738
github.com/gogo/protobuf v1.3.2 // indirect
3839
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
3940
github.com/golang/protobuf v1.5.4 // indirect
4041
github.com/google/gnostic-models v0.6.8 // indirect
4142
github.com/google/go-cmp v0.6.0 // indirect
4243
github.com/google/gofuzz v1.2.0 // indirect
43-
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect
44+
github.com/google/pprof v0.0.0-20240727154555-813a5fbdbec8 // indirect
4445
github.com/gorilla/websocket v1.5.0 // indirect
4546
github.com/hashicorp/hcl v1.0.0 // indirect
4647
github.com/imdario/mergo v0.3.6 // indirect
@@ -51,47 +52,49 @@ require (
5152
github.com/mailru/easyjson v0.7.7 // indirect
5253
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
5354
github.com/mitchellh/mapstructure v1.5.0 // indirect
54-
github.com/moby/spdystream v0.2.0 // indirect
55+
github.com/moby/spdystream v0.4.0 // indirect
5556
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5657
github.com/modern-go/reflect2 v1.0.2 // indirect
5758
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5859
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
5960
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
6061
github.com/pkg/errors v0.9.1 // indirect
61-
github.com/prometheus/client_golang v1.18.0 // indirect
62-
github.com/prometheus/client_model v0.5.0 // indirect
63-
github.com/prometheus/common v0.45.0 // indirect
64-
github.com/prometheus/procfs v0.12.0 // indirect
62+
github.com/prometheus/client_golang v1.19.1 // indirect
63+
github.com/prometheus/client_model v0.6.1 // indirect
64+
github.com/prometheus/common v0.55.0 // indirect
65+
github.com/prometheus/procfs v0.15.1 // indirect
6566
github.com/sagikazarmark/locafero v0.4.0 // indirect
6667
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
6768
github.com/sourcegraph/conc v0.3.0 // indirect
6869
github.com/spf13/afero v1.11.0 // indirect
6970
github.com/spf13/cast v1.6.0 // indirect
7071
github.com/subosito/gotenv v1.6.0 // indirect
71-
go.etcd.io/etcd/api/v3 v3.5.14 // indirect
72-
go.etcd.io/etcd/client/pkg/v3 v3.5.14 // indirect
72+
github.com/x448/float16 v0.8.4 // indirect
73+
go.etcd.io/etcd/api/v3 v3.5.15 // indirect
74+
go.etcd.io/etcd/client/pkg/v3 v3.5.15 // indirect
7375
go.uber.org/multierr v1.11.0 // indirect
7476
go.uber.org/zap v1.27.0 // indirect
75-
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
76-
golang.org/x/net v0.25.0 // indirect
77-
golang.org/x/oauth2 v0.18.0 // indirect
78-
golang.org/x/sys v0.20.0 // indirect
79-
golang.org/x/term v0.20.0 // indirect
80-
golang.org/x/text v0.15.0 // indirect
77+
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
78+
golang.org/x/net v0.28.0 // indirect
79+
golang.org/x/oauth2 v0.21.0 // indirect
80+
golang.org/x/sys v0.23.0 // indirect
81+
golang.org/x/term v0.23.0 // indirect
82+
golang.org/x/text v0.17.0 // indirect
8183
golang.org/x/time v0.5.0 // indirect
82-
golang.org/x/tools v0.21.0 // indirect
84+
golang.org/x/tools v0.24.0 // indirect
8385
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
8486
google.golang.org/appengine v1.6.8 // indirect
85-
google.golang.org/genproto/googleapis/api v0.0.0-20240311132316-a219d84964c2 // indirect
86-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240314234333-6e1732d8331c // indirect
87-
google.golang.org/grpc v1.62.1 // indirect
88-
google.golang.org/protobuf v1.33.0 // indirect
87+
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 // indirect
88+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect
89+
google.golang.org/grpc v1.65.0 // indirect
90+
google.golang.org/protobuf v1.34.2 // indirect
91+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
8992
gopkg.in/inf.v0 v0.9.1 // indirect
9093
gopkg.in/ini.v1 v1.67.0 // indirect
9194
gopkg.in/yaml.v2 v2.4.0 // indirect
9295
gopkg.in/yaml.v3 v3.0.1 // indirect
93-
k8s.io/apiextensions-apiserver v0.30.1 // indirect
94-
k8s.io/klog/v2 v2.120.1 // indirect
96+
k8s.io/apiextensions-apiserver v0.31.0 // indirect
97+
k8s.io/klog/v2 v2.130.1 // indirect
9598
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
9699
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
97100
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect

0 commit comments

Comments
 (0)