Skip to content

Commit fe3d652

Browse files
chore(deps): update all non-major dependencies
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent e8d0e8c commit fe3d652

File tree

5 files changed

+117
-118
lines changed

5 files changed

+117
-118
lines changed

.github/workflows/publish-chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Harden Runner
17-
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
17+
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
1818
with:
1919
egress-policy: audit
2020

2121
- name: Checkout
22-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
22+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2323
with:
2424
fetch-depth: 0
2525

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
IMAGE_NAME: ${{ github.repository }}
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
22+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2323
with:
2424
fetch-depth: 0
2525
- name: Git Fetch
@@ -28,22 +28,22 @@ jobs:
2828
uses: actions/setup-go@v5
2929
with:
3030
go-version: stable
31-
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
31+
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
3232
with:
3333
path: |
3434
~/.cache/go-build
3535
~/go/pkg/mod
3636
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
3737
restore-keys: |
3838
${{ runner.os }}-go-
39-
- uses: sigstore/cosign-installer@4959ce089c160fddf62f7b42464195ba1a56d382 # v3.6.0
40-
- uses: anchore/sbom-action/download-syft@61119d458adab75f756bc0b9e4bde25725f86a7a # v0.17.2
39+
- uses: sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da # v3.7.0
40+
- uses: anchore/sbom-action/download-syft@251a468eed47e5082b105c3ba6ee500c0e65a764 # v0.17.6
4141

4242
- name: Set Up Docker Buildx
4343
uses: docker/setup-buildx-action@v3
4444

4545
- name: Set up Cosign
46-
uses: sigstore/cosign-installer@v3.6.0
46+
uses: sigstore/cosign-installer@v3.7.0
4747

4848
- name: Login to Registry
4949
uses: docker/login-action@v3

.github/workflows/semgrep.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
# Upload findings to GitHub Advanced Security Dashboard [step 2/2]
3131
- name: Upload SARIF file for GitHub Advanced Security Dashboard
32-
uses: github/codeql-action/upload-sarif@89036746af0bb9507d6f90289b0d5b97d5f44c0c # v2.26.4
32+
uses: github/codeql-action/upload-sarif@6a89f57882288b3d2f190cda65000eec9e9ebb7c # v2.27.0
3333
with:
3434
sarif_file: semgrep.sarif
3535
if: always()

go.mod

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/stackitcloud/stackit-cert-manager-webhook
22

33
go 1.22.0
44

5-
toolchain go1.23.0
5+
toolchain go1.23.2
66

77
// Do not remove this comment:
88
// please place any replace statements here at the top for visibility and add a
@@ -13,26 +13,26 @@ toolchain go1.23.0
1313
// with the newer versions of "github.com/prometheus/common/expfmt" and "github.com/prometheus/client_golang"
1414
// fails. These replace statements can be removed once expfmt.FmtText is no longer used by any of the libraries
1515
// we depend on.
16-
replace github.com/prometheus/common => github.com/prometheus/common v0.55.0
16+
replace github.com/prometheus/common => github.com/prometheus/common v0.60.1
1717

18-
replace github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.20.1
18+
replace github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.20.5
1919

2020
// fixes k8s/apiserver: cannot use &itemsNode{…} (value of type *itemsNode) as checker.AstNode value in return
2121
// statement: *itemsNode does not implement checker.AstNode (wrong type for method Expr)
2222
replace github.com/google/cel-go => github.com/google/cel-go v0.21.0
2323

2424
require (
25-
github.com/cert-manager/cert-manager v1.15.3
26-
github.com/stackitcloud/stackit-sdk-go/core v0.12.0
27-
github.com/stackitcloud/stackit-sdk-go/services/dns v0.10.0
25+
github.com/cert-manager/cert-manager v1.16.1
26+
github.com/stackitcloud/stackit-sdk-go/core v0.14.0
27+
github.com/stackitcloud/stackit-sdk-go/services/dns v0.11.0
2828
github.com/stretchr/testify v1.9.0
29-
go.uber.org/mock v0.4.0
29+
go.uber.org/mock v0.5.0
3030
go.uber.org/zap v1.27.0
31-
k8s.io/api v0.31.0
32-
k8s.io/apiextensions-apiserver v0.31.0
33-
k8s.io/apimachinery v0.31.0
34-
k8s.io/client-go v0.31.0
35-
k8s.io/utils v0.0.0-20240821151609-f90d01438635
31+
k8s.io/api v0.31.2
32+
k8s.io/apiextensions-apiserver v0.31.2
33+
k8s.io/apimachinery v0.31.2
34+
k8s.io/client-go v0.31.2
35+
k8s.io/utils v0.0.0-20240921022957-49e7df575cb6
3636
)
3737

3838
require (
@@ -75,13 +75,13 @@ require (
7575
github.com/klauspost/compress v1.17.9 // indirect
7676
github.com/kylelemons/godebug v1.1.0 // indirect
7777
github.com/mailru/easyjson v0.7.7 // indirect
78-
github.com/miekg/dns v1.1.59 // indirect
78+
github.com/miekg/dns v1.1.62 // indirect
7979
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
8080
github.com/modern-go/reflect2 v1.0.2 // indirect
8181
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
8282
github.com/pkg/errors v0.9.1 // indirect
8383
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
84-
github.com/prometheus/client_golang v1.19.1 // indirect
84+
github.com/prometheus/client_golang v1.20.4 // indirect
8585
github.com/prometheus/client_model v0.6.1 // indirect
8686
github.com/prometheus/common v0.55.0 // indirect
8787
github.com/prometheus/procfs v0.15.1 // indirect
@@ -92,45 +92,45 @@ require (
9292
go.etcd.io/etcd/api/v3 v3.5.15 // indirect
9393
go.etcd.io/etcd/client/pkg/v3 v3.5.15 // indirect
9494
go.etcd.io/etcd/client/v3 v3.5.15 // indirect
95-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 // indirect
96-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect
97-
go.opentelemetry.io/otel v1.28.0 // indirect
95+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0 // indirect
96+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 // indirect
97+
go.opentelemetry.io/otel v1.29.0 // indirect
9898
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 // indirect
9999
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 // indirect
100-
go.opentelemetry.io/otel/metric v1.28.0 // indirect
100+
go.opentelemetry.io/otel/metric v1.29.0 // indirect
101101
go.opentelemetry.io/otel/sdk v1.28.0 // indirect
102-
go.opentelemetry.io/otel/trace v1.28.0 // indirect
102+
go.opentelemetry.io/otel/trace v1.29.0 // indirect
103103
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
104104
go.uber.org/multierr v1.11.0 // indirect
105-
golang.org/x/crypto v0.25.0 // indirect
105+
golang.org/x/crypto v0.27.0 // indirect
106106
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
107-
golang.org/x/mod v0.19.0 // indirect
108-
golang.org/x/net v0.27.0 // indirect
109-
golang.org/x/oauth2 v0.21.0 // indirect
110-
golang.org/x/sync v0.7.0 // indirect
111-
golang.org/x/sys v0.22.0 // indirect
112-
golang.org/x/term v0.22.0 // indirect
113-
golang.org/x/text v0.16.0 // indirect
114-
golang.org/x/time v0.5.0 // indirect
115-
golang.org/x/tools v0.23.0 // indirect
107+
golang.org/x/mod v0.20.0 // indirect
108+
golang.org/x/net v0.29.0 // indirect
109+
golang.org/x/oauth2 v0.23.0 // indirect
110+
golang.org/x/sync v0.8.0 // indirect
111+
golang.org/x/sys v0.25.0 // indirect
112+
golang.org/x/term v0.24.0 // indirect
113+
golang.org/x/text v0.18.0 // indirect
114+
golang.org/x/time v0.6.0 // indirect
115+
golang.org/x/tools v0.24.0 // indirect
116116
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
117117
google.golang.org/genproto v0.0.0-20240730163845-b1a4ccb954bf // indirect
118-
google.golang.org/genproto/googleapis/api v0.0.0-20240730163845-b1a4ccb954bf // indirect
119-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240730163845-b1a4ccb954bf // indirect
120-
google.golang.org/grpc v1.65.0 // indirect
118+
google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed // indirect
119+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
120+
google.golang.org/grpc v1.66.2 // indirect
121121
google.golang.org/protobuf v1.34.2 // indirect
122122
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
123123
gopkg.in/inf.v0 v0.9.1 // indirect
124124
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
125125
gopkg.in/yaml.v2 v2.4.0 // indirect
126126
gopkg.in/yaml.v3 v3.0.1 // indirect
127-
k8s.io/apiserver v0.31.0 // indirect
128-
k8s.io/component-base v0.31.0 // indirect
127+
k8s.io/apiserver v0.31.2 // indirect
128+
k8s.io/component-base v0.31.2 // indirect
129129
k8s.io/klog/v2 v2.130.1 // indirect
130-
k8s.io/kms v0.31.0 // indirect
131-
k8s.io/kube-openapi v0.0.0-20240730131305-7a9a4e85957e // indirect
130+
k8s.io/kms v0.31.2 // indirect
131+
k8s.io/kube-openapi v0.0.0-20240903163716-9e1beecbcb38 // indirect
132132
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3 // indirect
133-
sigs.k8s.io/controller-runtime v0.18.2 // indirect
133+
sigs.k8s.io/controller-runtime v0.19.0 // indirect
134134
sigs.k8s.io/gateway-api v1.1.0 // indirect
135135
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
136136
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect

0 commit comments

Comments
 (0)