Skip to content

Commit 5687ffa

Browse files
Bump the go-deps group with 8 updates
Bumps the go-deps group with 8 updates: | Package | From | To | | --- | --- | --- | | [github.com/cyphar/filepath-securejoin](https://github.com/cyphar/filepath-securejoin) | `0.3.1` | `0.3.2` | | [github.com/fluxcd/pkg/apis/event](https://github.com/fluxcd/pkg) | `0.10.0` | `0.10.1` | | [github.com/fluxcd/pkg/apis/meta](https://github.com/fluxcd/pkg) | `1.6.0` | `1.6.1` | | [github.com/fluxcd/pkg/git](https://github.com/fluxcd/pkg) | `0.20.0` | `0.21.0` | | [github.com/fluxcd/pkg/git/gogit](https://github.com/fluxcd/pkg) | `0.20.0` | `0.21.0` | | [github.com/fluxcd/pkg/gittestserver](https://github.com/fluxcd/pkg) | `0.13.0` | `0.13.1` | | [github.com/fluxcd/pkg/runtime](https://github.com/fluxcd/pkg) | `0.49.0` | `0.49.1` | | [github.com/fluxcd/pkg/ssh](https://github.com/fluxcd/pkg) | `0.14.0` | `0.14.1` | Updates `github.com/cyphar/filepath-securejoin` from 0.3.1 to 0.3.2 - [Release notes](https://github.com/cyphar/filepath-securejoin/releases) - [Changelog](https://github.com/cyphar/filepath-securejoin/blob/main/CHANGELOG.md) - [Commits](cyphar/filepath-securejoin@v0.3.1...v0.3.2) Updates `github.com/fluxcd/pkg/apis/event` from 0.10.0 to 0.10.1 - [Commits](fluxcd/pkg@git/v0.10.0...runtime/v0.10.1) Updates `github.com/fluxcd/pkg/apis/meta` from 1.6.0 to 1.6.1 - [Commits](fluxcd/pkg@apis/meta/v1.6.0...apis/meta/v1.6.1) Updates `github.com/fluxcd/pkg/git` from 0.20.0 to 0.21.0 - [Commits](fluxcd/pkg@git/v0.20.0...git/v0.21.0) Updates `github.com/fluxcd/pkg/git/gogit` from 0.20.0 to 0.21.0 - [Commits](fluxcd/pkg@git/v0.20.0...git/v0.21.0) Updates `github.com/fluxcd/pkg/gittestserver` from 0.13.0 to 0.13.1 - [Commits](fluxcd/pkg@git/v0.13.0...runtime/v0.13.1) Updates `github.com/fluxcd/pkg/runtime` from 0.49.0 to 0.49.1 - [Commits](fluxcd/pkg@runtime/v0.49.0...runtime/v0.49.1) Updates `github.com/fluxcd/pkg/ssh` from 0.14.0 to 0.14.1 - [Commits](fluxcd/pkg@git/v0.14.0...git/v0.14.1) --- updated-dependencies: - dependency-name: github.com/cyphar/filepath-securejoin dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go-deps - dependency-name: github.com/fluxcd/pkg/apis/event dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go-deps - dependency-name: github.com/fluxcd/pkg/apis/meta dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go-deps - dependency-name: github.com/fluxcd/pkg/git dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-deps - dependency-name: github.com/fluxcd/pkg/git/gogit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go-deps - dependency-name: github.com/fluxcd/pkg/gittestserver dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go-deps - dependency-name: github.com/fluxcd/pkg/runtime dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go-deps - dependency-name: github.com/fluxcd/pkg/ssh dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go-deps ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a716f8b commit 5687ffa

File tree

2 files changed

+100
-77
lines changed

2 files changed

+100
-77
lines changed

go.mod

Lines changed: 33 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/fluxcd/image-automation-controller
22

33
go 1.22.0
4+
toolchain go1.22.5
45

56
replace github.com/fluxcd/image-automation-controller/api => ./api
67

@@ -14,17 +15,17 @@ require (
1415
github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6
1516
github.com/Masterminds/sprig/v3 v3.3.0
1617
github.com/ProtonMail/go-crypto v1.1.0-alpha.5-proton
17-
github.com/cyphar/filepath-securejoin v0.3.1
18+
github.com/cyphar/filepath-securejoin v0.3.2
1819
github.com/fluxcd/image-automation-controller/api v0.38.0
1920
github.com/fluxcd/image-reflector-controller/api v0.32.0
2021
github.com/fluxcd/pkg/apis/acl v0.3.0
21-
github.com/fluxcd/pkg/apis/event v0.10.0
22-
github.com/fluxcd/pkg/apis/meta v1.6.0
23-
github.com/fluxcd/pkg/git v0.20.0
24-
github.com/fluxcd/pkg/git/gogit v0.20.0
25-
github.com/fluxcd/pkg/gittestserver v0.13.0
26-
github.com/fluxcd/pkg/runtime v0.49.0
27-
github.com/fluxcd/pkg/ssh v0.14.0
22+
github.com/fluxcd/pkg/apis/event v0.10.1
23+
github.com/fluxcd/pkg/apis/meta v1.6.1
24+
github.com/fluxcd/pkg/git v0.21.0
25+
github.com/fluxcd/pkg/git/gogit v0.21.0
26+
github.com/fluxcd/pkg/gittestserver v0.13.1
27+
github.com/fluxcd/pkg/runtime v0.49.1
28+
github.com/fluxcd/pkg/ssh v0.14.1
2829
github.com/fluxcd/source-controller/api v1.3.0
2930
github.com/go-git/go-billy/v5 v5.5.0
3031
github.com/go-git/go-git/v5 v5.12.0
@@ -33,9 +34,9 @@ require (
3334
github.com/onsi/gomega v1.34.2
3435
github.com/otiai10/copy v1.14.0
3536
github.com/spf13/pflag v1.0.5
36-
k8s.io/api v0.31.0
37-
k8s.io/apimachinery v0.31.0
38-
k8s.io/client-go v0.31.0
37+
k8s.io/api v0.31.1
38+
k8s.io/apimachinery v0.31.1
39+
k8s.io/client-go v0.31.1
3940
k8s.io/kube-openapi v0.0.0-20240411171206-dc4e619f62f3
4041
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8
4142
sigs.k8s.io/controller-runtime v0.19.0
@@ -44,7 +45,11 @@ require (
4445

4546
require (
4647
dario.cat/mergo v1.0.1 // indirect
48+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.14.0 // indirect
49+
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0 // indirect
50+
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect
4751
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
52+
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
4853
github.com/MakeNowJust/heredoc v1.0.0 // indirect
4954
github.com/Masterminds/goutils v1.1.1 // indirect
5055
github.com/Masterminds/semver/v3 v3.3.0 // indirect
@@ -53,15 +58,16 @@ require (
5358
github.com/blang/semver/v4 v4.0.0 // indirect
5459
github.com/cespare/xxhash/v2 v2.3.0 // indirect
5560
github.com/chai2010/gettext-go v1.0.2 // indirect
56-
github.com/cloudflare/circl v1.3.9 // indirect
61+
github.com/cloudflare/circl v1.4.0 // indirect
5762
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
5863
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
5964
github.com/emirpasic/gods v1.18.1 // indirect
6065
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
6166
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
6267
github.com/fluxcd/cli-utils v0.36.0-flux.9 // indirect
6368
github.com/fluxcd/gitkit v0.6.0 // indirect
64-
github.com/fluxcd/pkg/version v0.4.0 // indirect
69+
github.com/fluxcd/pkg/auth v0.0.1 // indirect
70+
github.com/fluxcd/pkg/version v0.4.1 // indirect
6571
github.com/fsnotify/fsnotify v1.7.0 // indirect
6672
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
6773
github.com/go-errors/errors v1.5.1 // indirect
@@ -72,6 +78,7 @@ require (
7278
github.com/go-openapi/swag v0.23.0 // indirect
7379
github.com/gofrs/uuid v4.4.0+incompatible // indirect
7480
github.com/gogo/protobuf v1.3.2 // indirect
81+
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
7582
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
7683
github.com/golang/protobuf v1.5.4 // indirect
7784
github.com/google/btree v1.1.2 // indirect
@@ -108,8 +115,9 @@ require (
108115
github.com/opencontainers/go-digest v1.0.0 // indirect
109116
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
110117
github.com/pjbgf/sha1cd v0.3.0 // indirect
118+
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
111119
github.com/pkg/errors v0.9.1 // indirect
112-
github.com/prometheus/client_golang v1.20.0 // indirect
120+
github.com/prometheus/client_golang v1.20.3 // indirect
113121
github.com/prometheus/client_model v0.6.1 // indirect
114122
github.com/prometheus/common v0.55.0 // indirect
115123
github.com/prometheus/procfs v0.15.1 // indirect
@@ -125,29 +133,29 @@ require (
125133
go.starlark.net v0.0.0-20231121155337-90ade8b19d09 // indirect
126134
go.uber.org/multierr v1.11.0 // indirect
127135
go.uber.org/zap v1.27.0 // indirect
128-
golang.org/x/crypto v0.26.0 // indirect
136+
golang.org/x/crypto v0.27.0 // indirect
129137
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
130-
golang.org/x/mod v0.20.0 // indirect
131-
golang.org/x/net v0.28.0 // indirect
138+
golang.org/x/mod v0.21.0 // indirect
139+
golang.org/x/net v0.29.0 // indirect
132140
golang.org/x/oauth2 v0.22.0 // indirect
133141
golang.org/x/sync v0.8.0 // indirect
134-
golang.org/x/sys v0.24.0 // indirect
135-
golang.org/x/term v0.23.0 // indirect
136-
golang.org/x/text v0.17.0 // indirect
142+
golang.org/x/sys v0.25.0 // indirect
143+
golang.org/x/term v0.24.0 // indirect
144+
golang.org/x/text v0.18.0 // indirect
137145
golang.org/x/time v0.6.0 // indirect
138-
golang.org/x/tools v0.24.0 // indirect
146+
golang.org/x/tools v0.25.0 // indirect
139147
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
140148
google.golang.org/protobuf v1.34.2 // indirect
141149
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
142150
gopkg.in/inf.v0 v0.9.1 // indirect
143151
gopkg.in/warnings.v0 v0.1.2 // indirect
144152
gopkg.in/yaml.v2 v2.4.0 // indirect
145153
gopkg.in/yaml.v3 v3.0.1 // indirect
146-
k8s.io/apiextensions-apiserver v0.31.0 // indirect
147-
k8s.io/cli-runtime v0.31.0 // indirect
148-
k8s.io/component-base v0.31.0 // indirect
154+
k8s.io/apiextensions-apiserver v0.31.1 // indirect
155+
k8s.io/cli-runtime v0.31.1 // indirect
156+
k8s.io/component-base v0.31.1 // indirect
149157
k8s.io/klog/v2 v2.130.1 // indirect
150-
k8s.io/kubectl v0.31.0 // indirect
158+
k8s.io/kubectl v0.31.1 // indirect
151159
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
152160
sigs.k8s.io/kustomize/api v0.17.3 // indirect
153161
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect

0 commit comments

Comments
 (0)