Skip to content

Commit 2c5d71f

Browse files
Merge pull request containers#6500 from containers/renovate/github.com-moby-buildkit-0.x
fix(deps): update module github.com/moby/buildkit to v0.26.0
2 parents 5eb9553 + 6a1a846 commit 2c5d71f

File tree

159 files changed

+17624
-1290
lines changed

Some content is hidden

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

159 files changed

+17624
-1290
lines changed

.cirrus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ vendor_task:
127127

128128
# Runs within Cirrus's "community cluster"
129129
container:
130-
image: docker.io/library/golang:1.24.2
130+
image: docker.io/library/golang:1.24.3
131131
cpu: 1
132132
memory: 1
133133

go.mod

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/containers/buildah
22

33
// Warning: Ensure the "go" and "toolchain" versions match exactly to prevent unwanted auto-updates
44

5-
go 1.24.2
5+
go 1.24.3
66

77
require (
88
github.com/containerd/platforms v1.0.0-rc.2
@@ -17,7 +17,7 @@ require (
1717
github.com/fsouza/go-dockerclient v1.12.2
1818
github.com/hashicorp/go-multierror v1.1.1
1919
github.com/mattn/go-shellwords v1.0.12
20-
github.com/moby/buildkit v0.25.2
20+
github.com/moby/buildkit v0.26.0
2121
github.com/moby/sys/capability v0.4.0
2222
github.com/moby/sys/userns v0.1.0
2323
github.com/opencontainers/cgroups v0.0.6
@@ -68,7 +68,7 @@ require (
6868
github.com/docker/docker-credential-helpers v0.9.4 // indirect
6969
github.com/felixge/httpsnoop v1.0.4 // indirect
7070
github.com/fsnotify/fsnotify v1.9.0 // indirect
71-
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
71+
github.com/go-jose/go-jose/v4 v4.1.2 // indirect
7272
github.com/go-logr/logr v1.4.3 // indirect
7373
github.com/go-logr/stdr v1.2.2 // indirect
7474
github.com/godbus/dbus/v5 v5.1.0 // indirect
@@ -82,7 +82,7 @@ require (
8282
github.com/inconshreveable/mousetrap v1.1.0 // indirect
8383
github.com/jinzhu/copier v0.4.0 // indirect
8484
github.com/json-iterator/go v1.1.12 // indirect
85-
github.com/klauspost/compress v1.18.0 // indirect
85+
github.com/klauspost/compress v1.18.1 // indirect
8686
github.com/klauspost/pgzip v1.2.6 // indirect
8787
github.com/letsencrypt/boulder v0.0.0-20240620165639-de9c06129bec // indirect
8888
github.com/manifoldco/promptui v0.9.0 // indirect
@@ -115,23 +115,23 @@ require (
115115
github.com/tchap/go-patricia/v2 v2.3.3 // indirect
116116
github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399 // indirect
117117
github.com/ulikunitz/xz v0.5.15 // indirect
118-
github.com/vbatts/tar-split v0.12.1 // indirect
118+
github.com/vbatts/tar-split v0.12.2 // indirect
119119
github.com/vbauerster/mpb/v8 v8.10.2 // indirect
120120
github.com/vishvananda/netlink v1.3.1 // indirect
121121
github.com/vishvananda/netns v0.0.5 // indirect
122-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
122+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
123123
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
124-
go.opentelemetry.io/otel v1.36.0 // indirect
125-
go.opentelemetry.io/otel/metric v1.36.0 // indirect
126-
go.opentelemetry.io/otel/trace v1.36.0 // indirect
124+
go.opentelemetry.io/otel v1.38.0 // indirect
125+
go.opentelemetry.io/otel/metric v1.38.0 // indirect
126+
go.opentelemetry.io/otel/trace v1.38.0 // indirect
127127
go.yaml.in/yaml/v2 v2.4.2 // indirect
128128
golang.org/x/mod v0.29.0 // indirect
129129
golang.org/x/net v0.46.0 // indirect
130130
golang.org/x/text v0.31.0 // indirect
131-
google.golang.org/genproto/googleapis/api v0.0.0-20250414145226-207652e42e2e // indirect
132-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250414145226-207652e42e2e // indirect
133-
google.golang.org/grpc v1.72.2 // indirect
134-
google.golang.org/protobuf v1.36.9 // indirect
131+
google.golang.org/genproto/googleapis/api v0.0.0-20250825161204-c5933d9347a5 // indirect
132+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250825161204-c5933d9347a5 // indirect
133+
google.golang.org/grpc v1.76.0 // indirect
134+
google.golang.org/protobuf v1.36.10 // indirect
135135
gopkg.in/yaml.v3 v3.0.1 // indirect
136136
k8s.io/klog v1.0.0 // indirect
137137
sigs.k8s.io/yaml v1.6.0 // indirect

go.sum

Lines changed: 50 additions & 48 deletions
Large diffs are not rendered by default.

tests/tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/containers/buildah/tests/tools
22

3-
go 1.22.1
3+
go 1.24.3
44

55
require github.com/cpuguy83/go-md2man/v2 v2.0.4
66

vendor/github.com/go-jose/go-jose/v4/CHANGELOG.md

Lines changed: 0 additions & 96 deletions
This file was deleted.

vendor/github.com/go-jose/go-jose/v4/README.md

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

vendor/github.com/go-jose/go-jose/v4/crypter.go

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

vendor/github.com/go-jose/go-jose/v4/jwe.go

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

0 commit comments

Comments
 (0)