Skip to content

Commit 4edd81f

Browse files
authored
Merge pull request #250 from fluxcd/flux-2.6
Update dependencies to Flux v2.6
2 parents 2bfbf05 + 261f90d commit 4edd81f

File tree

6 files changed

+92
-89
lines changed

6 files changed

+92
-89
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Setup Go
4545
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
4646
with:
47-
go-version: 1.23.x
47+
go-version: 1.24.x
4848
cache-dependency-path: |
4949
**/go.sum
5050
**/go.mod

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Go
1818
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
1919
with:
20-
go-version: 1.23.x
20+
go-version: 1.24.x
2121
cache-dependency-path: |
2222
**/go.sum
2323
**/go.mod

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ARG GO_VERSION=1.23
2-
ARG XX_VERSION=1.4.0
1+
ARG GO_VERSION=1.24
2+
ARG XX_VERSION=1.6.1
33

44
FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx
55

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ manifests: controller-gen
5252

5353
# Run go tidy to cleanup go.mod
5454
tidy:
55-
rm -f go.sum; go mod tidy -compat=1.23
55+
rm -f go.sum; go mod tidy -compat=1.24
5656

5757
# Run go fmt against code
5858
fmt:

go.mod

Lines changed: 26 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
module github.com/fluxcd/source-watcher
22

3-
go 1.23.0
3+
go 1.24.0
44

55
// Replace digest lib to master to gather access to BLAKE3.
66
// xref: https://github.com/opencontainers/go-digest/pull/66
77
replace github.com/opencontainers/go-digest => github.com/opencontainers/go-digest v1.0.1-0.20220411205349-bde1400a84be
88

99
require (
1010
github.com/fluxcd/pkg/http/fetch v0.15.0
11-
github.com/fluxcd/pkg/runtime v0.53.1
12-
github.com/fluxcd/pkg/tar v0.11.0
13-
github.com/fluxcd/source-controller/api v1.5.0
11+
github.com/fluxcd/pkg/runtime v0.60.0
12+
github.com/fluxcd/pkg/tar v0.12.0
13+
github.com/fluxcd/source-controller/api v1.6.2
1414
github.com/spf13/pflag v1.0.6
15-
k8s.io/apimachinery v0.32.2
16-
k8s.io/client-go v0.32.2
17-
sigs.k8s.io/controller-runtime v0.20.2
15+
k8s.io/apimachinery v0.33.0
16+
k8s.io/client-go v0.33.0
17+
sigs.k8s.io/controller-runtime v0.21.0
1818
)
1919

2020
require (
@@ -24,27 +24,24 @@ require (
2424
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2525
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
2626
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
27-
github.com/fluxcd/pkg/apis/acl v0.6.0 // indirect
28-
github.com/fluxcd/pkg/apis/meta v1.10.0 // indirect
27+
github.com/fluxcd/pkg/apis/acl v0.7.0 // indirect
28+
github.com/fluxcd/pkg/apis/meta v1.12.0 // indirect
2929
github.com/fsnotify/fsnotify v1.8.0 // indirect
30-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
30+
github.com/fxamacker/cbor/v2 v2.8.0 // indirect
3131
github.com/go-logr/logr v1.4.2 // indirect
3232
github.com/go-logr/zapr v1.3.0 // indirect
3333
github.com/go-openapi/jsonpointer v0.21.0 // indirect
3434
github.com/go-openapi/jsonreference v0.21.0 // indirect
3535
github.com/go-openapi/swag v0.23.0 // indirect
3636
github.com/gogo/protobuf v1.3.2 // indirect
37-
github.com/golang/protobuf v1.5.4 // indirect
3837
github.com/google/btree v1.1.3 // indirect
3938
github.com/google/gnostic-models v0.6.9 // indirect
40-
github.com/google/go-cmp v0.6.0 // indirect
41-
github.com/google/gofuzz v1.2.0 // indirect
39+
github.com/google/go-cmp v0.7.0 // indirect
4240
github.com/google/uuid v1.6.0 // indirect
4341
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
4442
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
4543
github.com/josharian/intern v1.0.0 // indirect
4644
github.com/json-iterator/go v1.1.12 // indirect
47-
github.com/klauspost/compress v1.17.11 // indirect
4845
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
4946
github.com/mailru/easyjson v0.9.0 // indirect
5047
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
@@ -53,32 +50,33 @@ require (
5350
github.com/opencontainers/go-digest v1.0.0 // indirect
5451
github.com/opencontainers/go-digest/blake3 v0.0.0-20240426182413-22b78e47854a // indirect
5552
github.com/pkg/errors v0.9.1 // indirect
56-
github.com/prometheus/client_golang v1.20.5 // indirect
53+
github.com/prometheus/client_golang v1.22.0 // indirect
5754
github.com/prometheus/client_model v0.6.1 // indirect
5855
github.com/prometheus/common v0.62.0 // indirect
5956
github.com/prometheus/procfs v0.15.1 // indirect
6057
github.com/x448/float16 v0.8.4 // indirect
6158
github.com/zeebo/blake3 v0.2.4 // indirect
6259
go.uber.org/multierr v1.11.0 // indirect
6360
go.uber.org/zap v1.27.0 // indirect
64-
golang.org/x/net v0.35.0 // indirect
65-
golang.org/x/oauth2 v0.26.0 // indirect
66-
golang.org/x/sync v0.11.0 // indirect
67-
golang.org/x/sys v0.30.0 // indirect
68-
golang.org/x/term v0.29.0 // indirect
69-
golang.org/x/text v0.22.0 // indirect
70-
golang.org/x/time v0.10.0 // indirect
61+
golang.org/x/net v0.40.0 // indirect
62+
golang.org/x/oauth2 v0.29.0 // indirect
63+
golang.org/x/sync v0.14.0 // indirect
64+
golang.org/x/sys v0.33.0 // indirect
65+
golang.org/x/term v0.32.0 // indirect
66+
golang.org/x/text v0.25.0 // indirect
67+
golang.org/x/time v0.11.0 // indirect
7168
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
72-
google.golang.org/protobuf v1.36.4 // indirect
69+
google.golang.org/protobuf v1.36.5 // indirect
7370
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
7471
gopkg.in/inf.v0 v0.9.1 // indirect
7572
gopkg.in/yaml.v3 v3.0.1 // indirect
76-
k8s.io/api v0.32.2 // indirect
77-
k8s.io/apiextensions-apiserver v0.32.2 // indirect
73+
k8s.io/api v0.33.0 // indirect
74+
k8s.io/apiextensions-apiserver v0.33.0 // indirect
7875
k8s.io/klog/v2 v2.130.1 // indirect
79-
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
80-
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect
76+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
77+
k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e // indirect
8178
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
82-
sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect
79+
sigs.k8s.io/randfill v1.0.0 // indirect
80+
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
8381
sigs.k8s.io/yaml v1.4.0 // indirect
8482
)

0 commit comments

Comments
 (0)