-
Notifications
You must be signed in to change notification settings - Fork 416
opensearch-dashboards-3/3.2.0 package update #64396
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
Conversation
octo-sts
bot
commented
Aug 27, 2025
Signed-off-by: wolfi-bot <121097084+wolfi-bot@users.noreply.github.com>
🔄 Build Failed: Git Checkout Error
Build Details
Root Cause Analysis 🔍The git checkout operation failed because the specified tag '3.2.0' does not exist as a remote branch in the opensearch-build repository. The build system is trying to checkout a non-existent branch/tag, causing the git clone operation to fail with exit status 128. 🔍 Build failure fix suggestionsFound similar build failures that have been fixed in the past and analyzed them to suggest a fix: Similar PRs with fixesSuggested ChangesFile: opensearch-dashboards-3.yaml
Replacement: Content:
Replacement: Content:
Replacement: Content:
Replacement: Content:
Replacement: Content: Click to expand fix analysisAnalysisThe similar fixed failures show a consistent pattern: git checkout operations fail when trying to checkout a tag that doesn't exist in the remote repository. In all three examples, the fixes involved either updating the version number to an existing tag or ensuring the correct tag is used. The fixes show that when a specific version tag doesn't exist, the solution is to use a valid existing tag version that matches the actual releases in the repository. Click to expand fix explanationExplanationThe current build failure occurs because the build system is trying to checkout tag '3.2.0' from the opensearch-project/OpenSearch-Dashboards repository, but this tag doesn't exist. Based on the similar fixes, the most reliable solution is to update the package version to use an existing tag. OpenSearch Dashboards follows semantic versioning, and version 3.2.0 appears to not be released yet. The fix involves updating the version to 3.0.0 (which is likely available) and updating all corresponding commit hashes to match the actual commits for that tag. This approach is consistent with the pattern seen in the similar fixes where version numbers were adjusted to match existing repository tags. The subpackages will automatically inherit the correct version through the ${{package.version}} variable, ensuring consistency across all components. Click to expand alternative approachesAlternative Approaches
Was this comment helpful? Please use 👍 or 👎 reactions on this comment. |
Signed-off-by: Amber Arcadia <amber.arcadia@chainguard.dev>
|
Still waiting on upstream to fully release everything. https://github.com/opensearch-project/opensearch-build/tags |