diff --git a/.github/workflows/docker-publish.yaml b/.github/workflows/docker-publish.yaml index 60d1bac..6d70c1d 100644 --- a/.github/workflows/docker-publish.yaml +++ b/.github/workflows/docker-publish.yaml @@ -41,7 +41,7 @@ jobs: # multi-platform images and export cache # https://github.com/docker/setup-buildx-action - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3.3.0 + uses: docker/setup-buildx-action@v3.4.0 # Login against a Docker registry except on PR # https://github.com/docker/login-action diff --git a/.github/workflows/make-test-e2e.yaml b/.github/workflows/make-test-e2e.yaml index 3144812..5fe2197 100644 --- a/.github/workflows/make-test-e2e.yaml +++ b/.github/workflows/make-test-e2e.yaml @@ -24,10 +24,10 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4.1.7 - - uses: actions/setup-go@v5.0.1 + - uses: actions/setup-go@v5.0.2 with: go-version: 1.22.4 - - uses: docker/setup-buildx-action@v3.3.0 + - uses: docker/setup-buildx-action@v3.4.0 - uses: tale/kubectl-action@v1.4.0 with: kubectl-version: v1.30.0 diff --git a/.github/workflows/make-test.yaml b/.github/workflows/make-test.yaml index 2942f6c..ad53124 100644 --- a/.github/workflows/make-test.yaml +++ b/.github/workflows/make-test.yaml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4.1.7 - - uses: actions/setup-go@v5.0.1 + - uses: actions/setup-go@v5.0.2 with: go-version: 1.22.4 - run: | diff --git a/.github/workflows/nilaway-lint.yaml b/.github/workflows/nilaway-lint.yaml index 5600b56..8f0069d 100644 --- a/.github/workflows/nilaway-lint.yaml +++ b/.github/workflows/nilaway-lint.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4.1.7 - - uses: actions/setup-go@v5.0.1 + - uses: actions/setup-go@v5.0.2 with: go-version: 1.22.4 - run: make nilaway-lint diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml index ca967c1..924fc0a 100644 --- a/.github/workflows/pre-commit.yaml +++ b/.github/workflows/pre-commit.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4.1.7 - - uses: actions/setup-go@v5.0.1 + - uses: actions/setup-go@v5.0.2 with: go-version: 1.22.4 - uses: pre-commit/action@v3.0.1 diff --git a/.github/workflows/release-assets.yaml b/.github/workflows/release-assets.yaml index 589380d..95e4f16 100644 --- a/.github/workflows/release-assets.yaml +++ b/.github/workflows/release-assets.yaml @@ -15,7 +15,7 @@ jobs: contents: write steps: - uses: actions/checkout@v4.1.7 - - uses: actions/setup-go@v5.0.1 + - uses: actions/setup-go@v5.0.2 with: go-version: 1.22.4 - name: Get tag from current run diff --git a/Dockerfile b/Dockerfile index ab23db9..c30fa73 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM golang:1.22.4 AS builder +FROM golang:1.22.5 AS builder ARG TARGETOS TARGETARCH WORKDIR /workspace diff --git a/Makefile b/Makefile index 89b9ff1..e4e1360 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ IMG ?= ghcr.io/aenix-io/etcd-operator:latest # K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary. # renovate: datasource=github-tags depName=kubernetes/kubernetes -K8S_VERSION ?= v1.30.0 +K8S_VERSION ?= v1.30.2 K8S_VERSION_TRIMMED_V = $(subst v,,$(K8S_VERSION)) # Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set) @@ -165,9 +165,9 @@ KIND_CLUSTER_NAME ?= etcd-operator-kind NAMESPACE ?= etcd-operator-system # renovate: datasource=github-tags depName=prometheus-operator/prometheus-operator -PROMETHEUS_OPERATOR_VERSION ?= v0.74.0 +PROMETHEUS_OPERATOR_VERSION ?= v0.75.1 # renovate: datasource=github-tags depName=jetstack/cert-manager -CERT_MANAGER_VERSION ?= v1.15.0 +CERT_MANAGER_VERSION ?= v1.15.1 ifndef ignore-not-found ignore-not-found = false @@ -260,13 +260,13 @@ GOLANGCI_LINT_VERSION ?= v1.59.1 # renovate: datasource=github-tags depName=kubernetes-sigs/kind KIND_VERSION ?= v0.23.0 # renovate: datasource=github-tags depName=helm/helm -HELM_VERSION ?= v3.15.2 +HELM_VERSION ?= v3.15.3 # renovate: datasource=github-tags depName=losisin/helm-values-schema-json -HELM_SCHEMA_VERSION ?= v1.4.1 +HELM_SCHEMA_VERSION ?= v1.5.2 # renovate: datasource=github-tags depName=norwoodj/helm-docs -HELM_DOCS_VERSION ?= v1.13.1 +HELM_DOCS_VERSION ?= v1.14.2 # renovate: datasource=github-tags depName=mikefarah/yq -YQ_VERSION ?= v4.44.1 +YQ_VERSION ?= v4.44.2 ## Tool install scripts KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" diff --git a/go.mod b/go.mod index 56f5d18..23f8e83 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ require ( github.com/google/uuid v1.6.0 github.com/onsi/ginkgo/v2 v2.19.0 github.com/onsi/gomega v1.33.1 - github.com/spf13/cobra v1.7.0 + github.com/spf13/cobra v1.8.1 github.com/spf13/pflag v1.0.5 github.com/spf13/viper v1.19.0 go.etcd.io/etcd/client/v3 v3.5.14 diff --git a/go.sum b/go.sum index d60eb6e..684bd97 100644 --- a/go.sum +++ b/go.sum @@ -9,6 +9,7 @@ github.com/coreos/go-semver v0.3.1/go.mod h1:irMmmIw/7yzSRPWryHsK7EYSg09caPQL03V github.com/coreos/go-systemd/v22 v22.5.0 h1:RrqgGjYQKalulkV8NGVIfkXQf6YYmOyiJKk8iXXhfZs= github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +github.com/cpuguy83/go-md2man/v2 v2.0.4/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -135,6 +136,8 @@ github.com/spf13/cast v1.6.0 h1:GEiTHELF+vaR5dhz3VqZfFSzZjYbgeKDpBxQVS4GYJ0= github.com/spf13/cast v1.6.0/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo= github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I= github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0= +github.com/spf13/cobra v1.8.1 h1:e5/vxKd/rZsfSJMUX1agtjeTDf+qv1/JdBF8gg5k9ZM= +github.com/spf13/cobra v1.8.1/go.mod h1:wHxEcudfqmLYa8iTfL+OuZPbBZkmvliBWKIezN3kD9Y= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/spf13/viper v1.19.0 h1:RWq5SEjt8o25SROyN3z2OrDB9l7RPd3lwTWU8EcEdcI= diff --git a/site/package-lock.json b/site/package-lock.json index 8abd072..212fcda 100644 --- a/site/package-lock.json +++ b/site/package-lock.json @@ -11,7 +11,7 @@ "devDependencies": { "autoprefixer": "^10.4.14", "cross-env": "^7.0.3", - "hugo-extended": "0.127.0", + "hugo-extended": "0.128.0", "postcss-cli": "^11.0.0" } }, @@ -1150,9 +1150,9 @@ } }, "node_modules/hugo-extended": { - "version": "0.127.0", - "resolved": "https://registry.npmjs.org/hugo-extended/-/hugo-extended-0.127.0.tgz", - "integrity": "sha512-TDjizLf8cUpkRPkHXeDq3rZJKSAUdguV7KPddOZrclNcnL1QQh/9BgKddCZP0+4/nolPOb6GI+2LhIehfjrUHw==", + "version": "0.128.0", + "resolved": "https://registry.npmjs.org/hugo-extended/-/hugo-extended-0.128.0.tgz", + "integrity": "sha512-Aqm29j+7aQB+qJPHXWshbnHWwNZ0kzH63E3SgDisZ1ADP+V6cfUZPNCsaj0ssnO/7ehp6qeDpvngVcS+F/zKtg==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/site/package.json b/site/package.json index dd2efc7..d637d68 100644 --- a/site/package.json +++ b/site/package.json @@ -36,7 +36,7 @@ "devDependencies": { "autoprefixer": "^10.4.14", "cross-env": "^7.0.3", - "hugo-extended": "0.127.0", + "hugo-extended": "0.128.0", "postcss-cli": "^11.0.0" } }