switch to GHA#200
Merged
joshuafernandes merged 1 commit intomasterfrom Feb 25, 2026
Merged
Conversation
|
All contributors have signed the CLA ✍️ ✅ |
Contributor
Author
|
I have read the CLA Document and I hereby sign the CLA |
| runs-on: ubuntu-24.04 | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 |
There was a problem hiding this comment.
Shallow checkout breaks grgit version calculation
High Severity
actions/checkout@v4 defaults to fetch-depth: 1 (shallow clone, no tags). The build.gradle relies on grgit.describe(tags: true) to compute the project version from git tags. Without tags in the clone, grgit.describe() returns null, causing the version to resolve to UNKNOWN+g<hash>. This breaks release-branch publishes (version becomes UNKNOWN+develop instead of e.g. 1.2.3-RC1+develop) and produces incorrect jar manifest versions. CircleCI's checkout fetched full history and tags, so this worked before.
Additional Locations (1)
lucassaldanha
approved these changes
Feb 25, 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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.


PR Description
switch to GHA
Note
Medium Risk
CI/CD migration changes the build/publish execution environment and gating, which can break releases or artifact publishing if triggers, secrets, or the new Java/Gradle setup action behave differently.
Overview
Replaces the CircleCI pipeline with a GitHub Actions workflow (
.github/workflows/ci.yml) that runs Gradlebuild/sourcesJaron pushes, PRs, and manual dispatch, and uploads test results and build artifacts.Adds a gated
publishjob that depends onbuildand runs only onmaster,release-*branches, or version tags, passing Cloudsmith credentials via GitHub Secrets/environment; removes the previous.circleci/config.ymlworkflow entirely.Written by Cursor Bugbot for commit 44bea06. This will update automatically on new commits. Configure here.