Skip to content

Commit e82fd15

Browse files
fix(deps): update all dependencies
1 parent c55a9b2 commit e82fd15

File tree

3 files changed

+136
-119
lines changed

3 files changed

+136
-119
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@ jobs:
6666
run: echo "cache=$(make go.cachedir)" >> $GITHUB_OUTPUT
6767

6868
- name: Cache the Go Build Cache
69-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
69+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
7070
with:
7171
path: ${{ steps.go.outputs.cache }}
7272
key: ${{ runner.os }}-build-lint-${{ hashFiles('**/go.sum') }}
7373
restore-keys: ${{ runner.os }}-build-lint-
7474

7575
- name: Cache Go Dependencies
76-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
76+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
7777
with:
7878
path: .work/pkg
7979
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}
@@ -85,7 +85,7 @@ jobs:
8585
# We could run 'make lint' but we prefer this action because it leaves
8686
# 'annotations' (i.e. it comments on PRs to point out linter violations).
8787
- name: Lint
88-
uses: golangci/golangci-lint-action@2e788936b09dd82dc280e845628a40d2ba6b204c # v6.3.1
88+
uses: golangci/golangci-lint-action@2226d7cb06a077cd73e56eedd38eecad18e5d837 # v6.5.0
8989
with:
9090
version: ${{ env.GOLANGCI_VERSION }}
9191

@@ -113,14 +113,14 @@ jobs:
113113
run: echo "cache=$(make go.cachedir)" >> $GITHUB_OUTPUT
114114

115115
- name: Cache the Go Build Cache
116-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
116+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
117117
with:
118118
path: ${{ steps.go.outputs.cache }}
119119
key: ${{ runner.os }}-build-check-diff-${{ hashFiles('**/go.sum') }}
120120
restore-keys: ${{ runner.os }}-build-check-diff-
121121

122122
- name: Cache Go Dependencies
123-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
123+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
124124
with:
125125
path: .work/pkg
126126
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}
@@ -156,14 +156,14 @@ jobs:
156156
run: echo "cache=$(make go.cachedir)" >> $GITHUB_OUTPUT
157157

158158
- name: Cache the Go Build Cache
159-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
159+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
160160
with:
161161
path: ${{ steps.go.outputs.cache }}
162162
key: ${{ runner.os }}-build-unit-tests-${{ hashFiles('**/go.sum') }}
163163
restore-keys: ${{ runner.os }}-build-unit-tests-
164164

165165
- name: Cache Go Dependencies
166-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
166+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
167167
with:
168168
path: .work/pkg
169169
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}
@@ -205,14 +205,14 @@ jobs:
205205
run: echo "cache=$(make go.cachedir)" >> $GITHUB_OUTPUT
206206

207207
- name: Cache the Go Build Cache
208-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
208+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
209209
with:
210210
path: ${{ steps.go.outputs.cache }}
211211
key: ${{ runner.os }}-build-unit-tests-${{ hashFiles('**/go.sum') }}
212212
restore-keys: ${{ runner.os }}-build-unit-tests-
213213

214214
- name: Cache Go Dependencies
215-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
215+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
216216
with:
217217
path: .work/pkg
218218
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}
@@ -237,12 +237,12 @@ jobs:
237237

238238
steps:
239239
- name: Setup QEMU
240-
uses: docker/setup-qemu-action@4574d27a4764455b42196d70a065bc6853246a25 # v3.4.0
240+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
241241
with:
242242
platforms: all
243243

244244
- name: Setup Docker Buildx
245-
uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3.9.0
245+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
246246
with:
247247
version: ${{ env.DOCKER_BUILDX_VERSION }}
248248
install: true
@@ -276,14 +276,14 @@ jobs:
276276
run: make common.buildvars >> $GITHUB_OUTPUT
277277

278278
- name: Cache the Go Build Cache
279-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
279+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
280280
with:
281281
path: ${{ steps.go.outputs.cache }}
282282
key: ${{ runner.os }}-build-publish-artifacts-${{ hashFiles('**/go.sum') }}
283283
restore-keys: ${{ runner.os }}-build-publish-artifacts-
284284

285285
- name: Cache Go Dependencies
286-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
286+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
287287
with:
288288
path: .work/pkg
289289
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}
@@ -323,7 +323,7 @@ jobs:
323323

324324
steps:
325325
- name: Install cosign
326-
uses: sigstore/cosign-installer@c56c2d3e59e4281cc41dea2217323ba5694b171e # v3.8.0
326+
uses: sigstore/cosign-installer@d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a # v3.8.1
327327

328328
- name: Login to ghcr.io
329329
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0

go.mod

Lines changed: 34 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,24 @@ toolchain go1.23.6
77
require (
88
dario.cat/mergo v1.0.1
99
github.com/alecthomas/kingpin/v2 v2.4.0
10-
github.com/crossplane/crossplane-runtime v1.17.0
11-
github.com/crossplane/crossplane-tools v0.0.0-20230925130601-628280f8bf79
10+
github.com/crossplane/crossplane-runtime v1.19.0
11+
github.com/crossplane/crossplane-tools v0.0.0-20240522174801-1ad3d4c87f21
1212
github.com/crossplane/upjet v1.5.0
13-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.33.0
13+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.36.1
1414
github.com/pkg/errors v0.9.1
15-
k8s.io/apimachinery v0.30.0
16-
k8s.io/client-go v0.30.0
17-
sigs.k8s.io/controller-runtime v0.18.2
18-
sigs.k8s.io/controller-tools v0.14.0
15+
k8s.io/apimachinery v0.32.2
16+
k8s.io/client-go v0.32.2
17+
sigs.k8s.io/controller-runtime v0.20.2
18+
sigs.k8s.io/controller-tools v0.17.2
1919
)
2020

2121
require (
22-
github.com/imdario/mergo v0.3.16 // indirect
2322
github.com/klauspost/compress v1.17.11 // indirect
24-
golang.org/x/sync v0.9.0 // indirect
23+
golang.org/x/sync v0.11.0 // indirect
2524
)
2625

2726
require (
2827
github.com/agext/levenshtein v1.2.3 // indirect
29-
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
3028
github.com/alecthomas/units v0.0.0-20240927000941-0f3dac36c52b // indirect
3129
github.com/antchfx/htmlquery v1.3.3 // indirect
3230
github.com/antchfx/xpath v1.3.2 // indirect
@@ -35,13 +33,14 @@ require (
3533
github.com/blang/semver/v4 v4.0.0 // indirect
3634
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3735
github.com/dave/jennifer v1.7.1 // indirect
38-
github.com/davecgh/go-spew v1.1.1 // indirect
36+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3937
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
4038
github.com/evanphx/json-patch v5.9.0+incompatible // indirect
41-
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
39+
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
4240
github.com/fatih/camelcase v1.0.0 // indirect
4341
github.com/fatih/color v1.18.0 // indirect
4442
github.com/fsnotify/fsnotify v1.8.0 // indirect
43+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
4544
github.com/go-logr/logr v1.4.2 // indirect
4645
github.com/go-logr/zapr v1.3.0 // indirect
4746
github.com/go-openapi/jsonpointer v0.21.0 // indirect
@@ -52,6 +51,7 @@ require (
5251
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
5352
github.com/golang/mock v1.6.0 // indirect
5453
github.com/golang/protobuf v1.5.4 // indirect
54+
github.com/google/btree v1.1.3 // indirect
5555
github.com/google/gnostic-models v0.6.8 // indirect
5656
github.com/google/go-cmp v0.6.0 // indirect
5757
github.com/google/gofuzz v1.2.0 // indirect
@@ -63,11 +63,11 @@ require (
6363
github.com/hashicorp/go-version v1.7.0 // indirect
6464
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
6565
github.com/hashicorp/logutils v1.0.0 // indirect
66-
github.com/hashicorp/terraform-json v0.23.0 // indirect
66+
github.com/hashicorp/terraform-json v0.24.0 // indirect
6767
github.com/hashicorp/terraform-plugin-framework v1.13.0 // indirect
68-
github.com/hashicorp/terraform-plugin-go v0.25.0 // indirect
68+
github.com/hashicorp/terraform-plugin-go v0.26.0 // indirect
6969
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
70-
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
70+
github.com/hashicorp/terraform-registry-address v0.2.4 // indirect
7171
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
7272
github.com/hashicorp/yamux v0.1.2 // indirect
7373
github.com/iancoleman/strcase v0.3.0 // indirect
@@ -94,42 +94,44 @@ require (
9494
github.com/prometheus/procfs v0.15.1 // indirect
9595
github.com/spf13/afero v1.11.0 // indirect
9696
github.com/spf13/cobra v1.8.1 // indirect
97-
github.com/spf13/pflag v1.0.5 // indirect
97+
github.com/spf13/pflag v1.0.6 // indirect
9898
github.com/tmccombs/hcl2json v0.6.4 // indirect
9999
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
100100
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
101101
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
102+
github.com/x448/float16 v0.8.4 // indirect
102103
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
103104
github.com/yuin/goldmark v1.4.13 // indirect
104-
github.com/zclconf/go-cty v1.15.0 // indirect
105+
github.com/zclconf/go-cty v1.16.2 // indirect
105106
github.com/zclconf/go-cty-yaml v1.1.0 // indirect
107+
go.opentelemetry.io/otel v1.31.0 // indirect
108+
go.opentelemetry.io/otel/trace v1.31.0 // indirect
106109
go.uber.org/multierr v1.11.0 // indirect
107110
go.uber.org/zap v1.27.0 // indirect
108-
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f // indirect
109111
golang.org/x/mod v0.22.0 // indirect
110-
golang.org/x/net v0.31.0 // indirect
112+
golang.org/x/net v0.34.0 // indirect
111113
golang.org/x/oauth2 v0.24.0 // indirect
112-
golang.org/x/sys v0.27.0 // indirect
113-
golang.org/x/term v0.26.0 // indirect
114-
golang.org/x/text v0.20.0 // indirect
114+
golang.org/x/sys v0.30.0 // indirect
115+
golang.org/x/term v0.28.0 // indirect
116+
golang.org/x/text v0.22.0 // indirect
115117
golang.org/x/time v0.8.0 // indirect
116-
golang.org/x/tools v0.27.0 // indirect
118+
golang.org/x/tools v0.29.0 // indirect
117119
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
118120
google.golang.org/appengine v1.6.8 // indirect
119121
google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 // indirect
120-
google.golang.org/grpc v1.67.1 // indirect
121-
google.golang.org/protobuf v1.35.2 // indirect
122-
gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect
122+
google.golang.org/grpc v1.69.4 // indirect
123+
google.golang.org/protobuf v1.36.3 // indirect
124+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
123125
gopkg.in/inf.v0 v0.9.1 // indirect
124126
gopkg.in/yaml.v2 v2.4.0 // indirect
125127
gopkg.in/yaml.v3 v3.0.1 // indirect
126-
k8s.io/api v0.30.0 // indirect
127-
k8s.io/apiextensions-apiserver v0.30.0 // indirect
128-
k8s.io/component-base v0.30.0 // indirect
128+
k8s.io/api v0.32.2 // indirect
129+
k8s.io/apiextensions-apiserver v0.32.1 // indirect
130+
k8s.io/component-base v0.32.1 // indirect
129131
k8s.io/klog/v2 v2.130.1 // indirect
130-
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
131-
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
132-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
132+
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
133+
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
134+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
133135
sigs.k8s.io/structured-merge-diff/v4 v4.4.3 // indirect
134136
sigs.k8s.io/yaml v1.4.0 // indirect
135137
)

0 commit comments

Comments
 (0)