Skip to content

Commit d23d883

Browse files
Mladen Rusevmladen-rusev-cyberark
authored andcommitted
prepare for release
1 parent 6810e77 commit d23d883

9 files changed

Lines changed: 199 additions & 226 deletions

File tree

.github/workflows/make-self-upgrade.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
scope: 'jetstack/jetstack-secure'
3939
identity: make-self-upgrade
4040

41-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
41+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4242
# Adding `fetch-depth: 0` makes sure tags are also fetched. We need
4343
# the tags so `git describe` returns a valid version.
4444
# see https://github.com/actions/checkout/issues/701 for extra info about this option
@@ -50,7 +50,7 @@ jobs:
5050
run: |
5151
make print-go-version >> "$GITHUB_OUTPUT"
5252
53-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
53+
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
5454
with:
5555
go-version: ${{ steps.go-version.outputs.result }}
5656

LICENSES

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ github.com/go-openapi/jsonreference,Apache-2.0
5959
github.com/go-openapi/swag,Apache-2.0
6060
github.com/go418/concurrentcache,Apache-2.0
6161
github.com/go418/concurrentcache/logger,Apache-2.0
62-
github.com/gogo/protobuf,BSD-3-Clause
6362
github.com/golang-jwt/jwt/v4,MIT
6463
github.com/golang-jwt/jwt/v5,MIT
6564
github.com/google/btree,Apache-2.0
@@ -85,7 +84,6 @@ github.com/microcosm-cc/bluemonday,BSD-3-Clause
8584
github.com/modern-go/concurrent,Apache-2.0
8685
github.com/modern-go/reflect2,Apache-2.0
8786
github.com/munnerz/goautoneg,BSD-3-Clause
88-
github.com/pkg/errors,BSD-2-Clause
8987
github.com/pmezard/go-difflib/difflib,BSD-3-Clause
9088
github.com/pmylund/go-cache,MIT
9189
github.com/prometheus/client_golang/internal/github.com/golang/gddo/httputil,BSD-3-Clause

go.mod

Lines changed: 19 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// TODO(wallrj): Rename the Go module to match the repository name
22
module github.com/jetstack/preflight
33

4-
go 1.24.4
4+
go 1.25.0
55

66
require (
7-
github.com/Venafi/vcert/v5 v5.12.2
7+
github.com/Venafi/vcert/v5 v5.12.3
88
github.com/cenkalti/backoff/v5 v5.0.3
99
github.com/fatih/color v1.18.0
1010
github.com/google/uuid v1.6.0
@@ -19,11 +19,11 @@ require (
1919
github.com/stretchr/testify v1.11.1
2020
golang.org/x/sync v0.19.0
2121
gopkg.in/yaml.v2 v2.4.0
22-
k8s.io/api v0.34.3
23-
k8s.io/apimachinery v0.34.3
24-
k8s.io/client-go v0.34.3
25-
k8s.io/component-base v0.34.3
26-
sigs.k8s.io/controller-runtime v0.22.4
22+
k8s.io/api v0.35.1
23+
k8s.io/apimachinery v0.35.1
24+
k8s.io/client-go v0.35.1
25+
k8s.io/component-base v0.35.1
26+
sigs.k8s.io/controller-runtime v0.23.1
2727
sigs.k8s.io/yaml v1.6.0
2828
)
2929

@@ -53,32 +53,31 @@ require (
5353
github.com/lestrrat-go/httpcc v1.0.1 // indirect
5454
github.com/lestrrat-go/httprc/v3 v3.0.2 // indirect
5555
github.com/lestrrat-go/option/v2 v2.0.0 // indirect
56-
github.com/pkg/errors v0.9.1 // indirect
5756
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
5857
github.com/segmentio/asm v1.2.1 // indirect
5958
github.com/sosodev/duration v1.3.1 // indirect
6059
github.com/stoewer/go-strcase v1.3.0 // indirect
6160
github.com/vektah/gqlparser/v2 v2.5.30 // indirect
6261
github.com/x448/float16 v0.8.4 // indirect
6362
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 // indirect
64-
go.opentelemetry.io/otel v1.35.0 // indirect
65-
go.opentelemetry.io/otel/trace v1.35.0 // indirect
63+
go.opentelemetry.io/otel v1.36.0 // indirect
64+
go.opentelemetry.io/otel/trace v1.36.0 // indirect
6665
go.uber.org/multierr v1.11.0 // indirect
67-
go.uber.org/zap v1.27.0 // indirect
68-
go.yaml.in/yaml/v2 v2.4.2 // indirect
66+
go.uber.org/zap v1.27.1 // indirect
67+
go.yaml.in/yaml/v2 v2.4.3 // indirect
6968
go.yaml.in/yaml/v3 v3.0.4 // indirect
7069
golang.org/x/crypto v0.46.0 // indirect
7170
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
7271
golang.org/x/net v0.47.0 // indirect
7372
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
7473
google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb // indirect
75-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250303144028-a0af3efb3deb // indirect
76-
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
74+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250528174236-200df99c418a // indirect
75+
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
7776
gopkg.in/ini.v1 v1.67.0 // indirect
78-
k8s.io/apiextensions-apiserver v0.34.3 // indirect
79-
k8s.io/apiserver v0.34.3 // indirect
77+
k8s.io/apiextensions-apiserver v0.35.0 // indirect
78+
k8s.io/apiserver v0.35.0 // indirect
8079
sigs.k8s.io/randfill v1.0.0 // indirect
81-
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
80+
sigs.k8s.io/structured-merge-diff/v6 v6.3.2-0.20260122202528-d9cc6641c482 // indirect
8281
)
8382

8483
require (
@@ -90,7 +89,6 @@ require (
9089
github.com/go-openapi/jsonpointer v0.21.0 // indirect
9190
github.com/go-openapi/jsonreference v0.20.4 // indirect
9291
github.com/go-openapi/swag v0.23.0 // indirect
93-
github.com/gogo/protobuf v1.3.2 // indirect
9492
github.com/golang-jwt/jwt/v4 v4.5.2
9593
github.com/google/go-cmp v0.7.0 // indirect
9694
github.com/hashicorp/errwrap v1.1.0 // indirect
@@ -105,7 +103,7 @@ require (
105103
github.com/prometheus/client_model v0.6.2 // indirect
106104
github.com/prometheus/common v0.66.1 // indirect
107105
github.com/prometheus/procfs v0.16.1 // indirect
108-
golang.org/x/oauth2 v0.30.0 // indirect
106+
golang.org/x/oauth2 v0.33.0 // indirect
109107
golang.org/x/sys v0.39.0 // indirect
110108
golang.org/x/term v0.38.0 // indirect
111109
golang.org/x/text v0.32.0 // indirect
@@ -114,7 +112,7 @@ require (
114112
gopkg.in/inf.v0 v0.9.1 // indirect
115113
gopkg.in/yaml.v3 v3.0.1
116114
k8s.io/klog/v2 v2.130.1
117-
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
115+
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
118116
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect
119-
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
117+
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
120118
)

0 commit comments

Comments
 (0)