fix: bump mvnd to 1.0.6 as 1.0.2 was removed from downloads.apache.org - #7005
Merged
Conversation
All CI jobs that install mvnd fail at the setup step since Aug 29, 2026: downloads.apache.org no longer hosts mvnd 1.0.2 (only latest releases are kept), so curl -sL saved the 404 HTML page as mvnd.zip and unzip failed with exit code 9, before any compilation started. - bump MVND_VERSION from 1.0.2 to 1.0.6 (verified available for both linux-amd64 and windows-amd64, same artifact naming) - add -f to the mvnd curl commands so download failures fail fast with a clear error instead of a corrupted zip Fixes apache#7004
Contributor
There was a problem hiding this comment.
Pull request overview
Updates CI workflows to use available mvnd 1.0.6 artifacts and fail immediately on HTTP download errors.
Changes:
- Bumps mvnd from 1.0.2 to 1.0.6 across all installation workflows.
- Adds curl’s
-fflag for fail-fast HTTP error handling.
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/ci.yml |
Updates mvnd setup. |
.github/workflows/docker-publish.yml |
Updates Linux and Windows mvnd setup. |
.github/workflows/docker-publish-dockerhub.yml |
Updates Docker Hub publishing setup. |
.github/workflows/e2e-k8s.yml |
Updates both end-to-end mvnd installations. |
.github/workflows/integrated-test.yml |
Updates integrated-test setup. |
.github/workflows/integrated-test-k8s-ingress.yml |
Updates ingress-test setup. |
.github/workflows/k8s-examples-http.yml |
Updates Kubernetes example setup. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
yu199195
approved these changes
Aug 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #7004
Motivation
Since Aug 29, 2026, CI fails on all PRs at the environment-setup step (before any compilation).
mvnd 1.0.2was removed fromdownloads.apache.org(ASF keeps only the latest releases there; the directory now only hosts1.0.6/and2.0.0-rc-3/), so the 1.0.2 URL returns 404. Because the workflows usecurl -sLwithout-f, the 404 HTML page was saved asmvnd.zipandunzipfailed with exit code 9 — e.g. #6347 and #7003.Modifications
MVND_VERSIONfrom1.0.2to1.0.6in all 7 workflows that install mvnd (ci.yml,docker-publish.yml,docker-publish-dockerhub.yml,e2e-k8s.yml,integrated-test.yml,integrated-test-k8s-ingress.yml,k8s-examples-http.yml). Artifacts verified available for bothlinux-amd64andwindows-amd64with the same naming scheme.-fto the mvndcurlcommands so future download failures fail fast with a clear error instead of a corrupted zip.Verifying this change
CI on this PR itself: the mvnd setup step should now succeed and jobs should proceed to actual compilation/tests.