chore(ci): correct actions/cache pin comment to actual version v5.0.5 - #41482
Merged
Conversation
The pinned SHA 27d5ce7f107fe9357f9df03efb73ab90386fccae corresponds to actions/cache tag v5.0.5, not the floating v5 tag (which points to a different commit). Update the comment to the truthful version so it matches the pinned commit. Resolves code-scanning alert #2553 (zizmor ref-version-mismatch). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
rusackas
requested review from
betodealmeida,
craig-rueda,
dpgaspar,
eschutho,
geido,
hainenber,
kgabryje,
mistercrunch,
nytai,
sadpandajoe and
villebro
as code owners
June 27, 2026 08:42
Contributor
|
Bito Automatic Review Skipped - Files Excluded |
hainenber
approved these changes
Jun 28, 2026
shantanukhond
pushed a commit
to shantanukhond/superset
that referenced
this pull request
Jun 30, 2026
…apache#41482) Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
9 tasks
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.
SUMMARY
The
actions/cacheaction is pinned by SHA27d5ce7f107fe9357f9df03efb73ab90386fccaein three workflow steps, but the trailing comment reads# v5. That SHA actually corresponds to tag v5.0.5; the floatingv5tag points to a different commit (caa2961...). The comment therefore misrepresents the pinned version.This updates the comment to the truthful version (
# v5.0.5) so it matches the pinned commit. No SHA change, so runtime behavior is identical.Affected files:
.github/workflows/release.yml(2 steps).github/workflows/pre-commit.yml(1 step)Resolves code-scanning alert #2553 (zizmor
ref-version-mismatch).BEFORE/AFTER
Before:
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5After:
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5TESTING INSTRUCTIONS
pre-commit run --files .github/workflows/release.yml .github/workflows/pre-commit.yml— zizmor passes.ADDITIONAL INFORMATION
🤖 Generated with Claude Code