-
Notifications
You must be signed in to change notification settings - Fork 5.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): upgrade BuildKit to v0.13 / Moby to v26 #11583
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #11583 +/- ##
==========================================
- Coverage 58.20% 58.15% -0.06%
==========================================
Files 135 135
Lines 11611 11611
==========================================
- Hits 6758 6752 -6
- Misses 4182 4186 +4
- Partials 671 673 +2 ☔ View full report in Codecov by Sentry. |
29bcfc3
to
8c97eb2
Compare
Additionally update some workflows in CI to add Moby v26 RC2 to the matrix and upgrade the various Docker actions. Signed-off-by: Milas Bowman <milas.bowman@docker.com>
- | ||
name: Build | ||
uses: docker/bake-action@v2 | ||
uses: docker/bake-action@v4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
be careful, since v3 provenance is enabled by default and will therefore upload a provenance.json
in GitHub Release. Add an extra step after this one to make sure of it:
-
name: List artifacts
run: |
tree -nh ./bin/release
If that's the case you can either set provenance: false
or handle it like we do in buildx repo.
Can be updated to v26.0.0 - https://github.com/moby/moby/releases/tag/v26.0.0 |
bumped to v26 in #11652 |
What I did