Skip to content

Commit 56c8f6b

Browse files
Merge pull request #171 from digitalocean/dkomsa/prepare-for-k8s-1.32
prepare for k8s 1.32
2 parents 079f768 + 150678e commit 56c8f6b

File tree

1,122 files changed

+47581
-48866
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,122 files changed

+47581
-48866
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Install go
18-
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
18+
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a #v5.2.0
1919
with:
2020
go-version: ^1.23
2121
- name: Check out code into the Go module directory
22-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
22+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
2323
- name: Login to dockerhub to push the image
2424
run: echo "${{ secrets.DockerHubToken }}" | docker login --username ${DOCKER_USER} --password-stdin
2525
env:
@@ -29,7 +29,7 @@ jobs:
2929
env:
3030
TAG: ${{ github.event.inputs.tag }}
3131
- name: Create Release
32-
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 # v2.0.8
32+
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda #v2.2.1
3333
with:
3434
# uses the HEAD on the default branch when creating the tag
3535
tag_name: ${{ github.event.inputs.tag }}

go.mod

Lines changed: 22 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
module github.com/digitalocean/clusterlint
22

3-
go 1.23.1
3+
go 1.23.5
44

55
require (
66
github.com/docker/distribution v2.8.3+incompatible
7-
github.com/fatih/color v1.17.0
7+
github.com/fatih/color v1.18.0
88
github.com/kubernetes-csi/external-snapshotter/client/v4 v4.2.0
99
github.com/stretchr/testify v1.9.0
10-
github.com/urfave/cli v1.22.15
11-
golang.org/x/sync v0.8.0
12-
k8s.io/api v0.31.0
13-
k8s.io/apimachinery v0.31.0
14-
k8s.io/client-go v0.31.0
10+
github.com/urfave/cli v1.22.16
11+
golang.org/x/sync v0.10.0
12+
k8s.io/api v0.32.1
13+
k8s.io/apimachinery v0.32.1
14+
k8s.io/client-go v0.32.1
1515
)
1616

1717
require (
18-
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
18+
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
1919
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2020
github.com/distribution/reference v0.6.0 // indirect
2121
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
@@ -26,15 +26,14 @@ require (
2626
github.com/go-openapi/swag v0.23.0 // indirect
2727
github.com/gogo/protobuf v1.3.2 // indirect
2828
github.com/golang/protobuf v1.5.4 // indirect
29-
github.com/google/gnostic-models v0.6.8 // indirect
29+
github.com/google/gnostic-models v0.6.9 // indirect
3030
github.com/google/go-cmp v0.6.0 // indirect
3131
github.com/google/gofuzz v1.2.0 // indirect
3232
github.com/google/uuid v1.6.0 // indirect
33-
github.com/imdario/mergo v0.3.16 // indirect
3433
github.com/josharian/intern v1.0.0 // indirect
3534
github.com/json-iterator/go v1.1.12 // indirect
36-
github.com/mailru/easyjson v0.7.7 // indirect
37-
github.com/mattn/go-colorable v0.1.13 // indirect
35+
github.com/mailru/easyjson v0.9.0 // indirect
36+
github.com/mattn/go-colorable v0.1.14 // indirect
3837
github.com/mattn/go-isatty v0.0.20 // indirect
3938
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4039
github.com/modern-go/reflect2 v1.0.2 // indirect
@@ -45,22 +44,21 @@ require (
4544
github.com/russross/blackfriday/v2 v2.1.0 // indirect
4645
github.com/spf13/pflag v1.0.5 // indirect
4746
github.com/x448/float16 v0.8.4 // indirect
48-
golang.org/x/net v0.29.0 // indirect
49-
golang.org/x/oauth2 v0.23.0 // indirect
50-
golang.org/x/sys v0.25.0 // indirect
51-
golang.org/x/term v0.24.0 // indirect
52-
golang.org/x/text v0.18.0 // indirect
53-
golang.org/x/time v0.6.0 // indirect
54-
google.golang.org/protobuf v1.34.2 // indirect
47+
golang.org/x/net v0.34.0 // indirect
48+
golang.org/x/oauth2 v0.25.0 // indirect
49+
golang.org/x/sys v0.29.0 // indirect
50+
golang.org/x/term v0.28.0 // indirect
51+
golang.org/x/text v0.21.0 // indirect
52+
golang.org/x/time v0.9.0 // indirect
53+
google.golang.org/protobuf v1.36.3 // indirect
5554
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
5655
gopkg.in/inf.v0 v0.9.1 // indirect
57-
gopkg.in/yaml.v2 v2.4.0 // indirect
5856
gopkg.in/yaml.v3 v3.0.1 // indirect
5957
k8s.io/klog/v2 v2.130.1 // indirect
60-
k8s.io/kube-openapi v0.0.0-20240903163716-9e1beecbcb38 // indirect
61-
k8s.io/utils v0.0.0-20240902221715-702e33fdd3c3 // indirect
62-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
63-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
58+
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
59+
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect
60+
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
61+
sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect
6462
sigs.k8s.io/yaml v1.4.0 // indirect
6563
)
6664

go.sum

Lines changed: 52 additions & 56 deletions
Large diffs are not rendered by default.

vendor/github.com/cpuguy83/go-md2man/v2/md2man/debug.go

Lines changed: 62 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cpuguy83/go-md2man/v2/md2man/md2man.go

Lines changed: 8 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cpuguy83/go-md2man/v2/md2man/roff.go

Lines changed: 66 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)