ci: add retry logic for Maven Central 403 errors#41
Merged
Conversation
- Add retry loops (3 attempts with 30-60s delays) to all Maven commands - Add -U flag to force updates and bypass cached failures - Configure repo1.maven.org mirror to bypass repo.maven.apache.org blocks - Remove Maven cache from setup-java (caching was contributing to issues) This fixes persistent 403 Forbidden errors from Maven Central that block GitHub Actions from downloading plugins and dependencies.
813d2c1 to
25bda7e
Compare
saurabhjain1592
added a commit
that referenced
this pull request
Jan 6, 2026
- Add retry loops (3 attempts with 30-60s delays) to all Maven commands - Add -U flag to force updates and bypass cached failures - Configure repo1.maven.org mirror to bypass repo.maven.apache.org blocks - Remove Maven cache from setup-java (caching was contributing to issues) This fixes persistent 403 Forbidden errors from Maven Central that block GitHub Actions from downloading plugins and dependencies.
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.
Summary
-Uflag to force updates and bypass cached failuresProblem
GitHub Actions runners are intermittently getting 403 Forbidden errors from Maven Central (repo.maven.apache.org). This appears to be rate limiting or IP blocking from Maven Central's side.
Solution
-Uflag to force Maven to check for updatesTest Plan