ci: Fix of invalid semantic version in build_charts CI#608
Merged
denis-ryzhkov merged 2 commits intoOct 31, 2025
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR fixes a CI failure in the build_charts workflow caused by invalid semantic version errors when packaging Helm charts. The issue occurred because git describe --tags was failing due to insufficient Git history being fetched.
Key Changes
- Added
fetch-depth: 0to all GitHub Actions checkout steps to fetch complete Git history including tags - Cleaned up debug echo statements that were temporarily added during troubleshooting
- Added explanatory comments for the fetch-depth requirement
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
.github/workflows/build_charts.yml |
Added fetch-depth: 0 and cleaned up debug echo statements |
.github/workflows/build_images.yml |
Added fetch-depth: 0 with explanatory comment |
.github/workflows/release_images.yml |
Added explanatory comment for existing fetch-depth: 0 |
gmlexx
approved these changes
Oct 31, 2025
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.
build_chartsCI workflow on push tomainstarted failing after the recent PR ci: Unification of intermediate versions for charts, images, KCM, QA #584mainbranch.fetch-depth: 0in theactions/checkoutto fetch all tags as required forgit describe --tags.