Fix the action reference in the Gradle wrapper validation workflow - #5266
Open
kedimuzafer wants to merge 1 commit into
Open
Fix the action reference in the Gradle wrapper validation workflow#5266kedimuzafer wants to merge 1 commit into
kedimuzafer wants to merge 1 commit into
Conversation
The workflow refers to gradle/actions/wrapper-validation@5, but gradle/actions publishes tags as v5, v6 and so on; there is no bare 5 tag. GitHub cannot resolve the reference, so the job dies with a startup failure before running, on pull requests and on pushes to master alike. The sibling reference in dependency-submission.yml already uses v5, so this matches it. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
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.
gradle-wrapper-validation.ymlrefers togradle/actions/wrapper-validation@5, butgradle/actionspublishes its tags as
v5,v6and so on — there is no bare5tag. GitHub cannot resolve thereference, so the job dies with a startup failure before running a single step.
This has been happening on every run since the reference was introduced, including pushes to
master:Because the failure happens at startup rather than in a step, the run has no log to open, which makes
it easy to miss — it just shows up as a red cross on every PR.
dependency-submission.ymlin this repo already usesgradle/actions/dependency-submission@v5, sothis change simply matches the working sibling reference.
One character.