Bump to 2.0.4-SNAPSHOT, add 2.0.3 changelog, upgrade vanniktech for Central Portal#269
Merged
Merged
Conversation
…ntral Portal - authentication/core: 2.0.3-SNAPSHOT → 2.0.4-SNAPSHOT (released 2.0.3 to Maven Central today) - gradle/libs.versions.toml: mavenPublish 0.27.0 → 0.33.0 (Sonatype OSSRH was decommissioned 2025-06-30; vanniktech 0.33.0+ defaults to the new Central Portal, which is required for future releases — 0.27.0 only knows the legacy Nexus staging API which returns HTTP 402 now) - CHANGELOG.md: add v2.0.3 entry covering PR #268 (UberEnvironment for sandbox/production) and PR #265 (graceful PAR failure handling)
The v1 standalone action under gradle/wrapper-validation-action has been deprecated and now fails. The action moved to gradle/actions/wrapper-validation under the gradle/actions monorepo. Bumping to v4 unblocks CI on this PR (check job was failing on the deprecated action across all 3 jobs that used it: check, test matrix, upload-snapshots). Pre-existing failure on main, surfaced by this PR.
760b3ef to
d0bb616
Compare
lalwani
reviewed
May 26, 2026
| uses: actions/checkout@v2 | ||
| - name: Gradle Wrapper Validation | ||
| uses: gradle/wrapper-validation-action@v1 | ||
| uses: gradle/actions/wrapper-validation@v4 |
Contributor
Author
There was a problem hiding this comment.
Failing on main — GitHub Actions dropped support for Node.js 16 on their runners, and gradle/wrapper-validation-action@v1 is pinned to Node 16 Need this bump to get CI green again.
lalwani
approved these changes
May 26, 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.
Nexus staging API (now returns HTTP 402 Migration Required). Version 0.33.0+ defaults publishToMavenCentral() to the new Central Portal — required for any future
release.
gradle/wrapper-validation-action@v1→gradle/actions/wrapper-validation@v4in.github/workflows/build.yml(3 occurrences). The v1 action namespace was deprecated and was failingon
mainbefore this PR — surfaced when CI ran on this branch. The fix is included here so the PR can merge cleanly.