rusackas opened a new pull request, #41482: URL: https://github.com/apache/superset/pull/41482
### SUMMARY The `actions/cache` action is pinned by SHA `27d5ce7f107fe9357f9df03efb73ab90386fccae` in three workflow steps, but the trailing comment reads `# v5`. That SHA actually corresponds to tag **v5.0.5**; the floating `v5` tag 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 # v5` After: `uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5` ### TESTING INSTRUCTIONS `pre-commit run --files .github/workflows/release.yml .github/workflows/pre-commit.yml` — zizmor passes. ### ADDITIONAL INFORMATION - [ ] Has associated issue: - [ ] Required feature flags: - [ ] Changes UI - [ ] Includes DB Migration (follow approval process in [SIP-59](https://github.com/apache/superset/issues/13351)) - [ ] Migration is atomic, supports rollback & is backwards-compatible - [ ] Confirm DB migration upgrade and downgrade tested - [ ] Runtime estimates and downtime expectations provided - [ ] Introduces new feature or API - [ ] Removes existing feature or API 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
