ci: fix Rust cache action casing for ASF allowlist - #3249
Merged
Merged
Conversation
xanderbailey
approved these changes
Sep 18, 2026
xanderbailey
left a comment
Contributor
There was a problem hiding this comment.
Thanks for fixing, this is causing #3236 to fail!
blackmwk
enabled auto-merge
September 18, 2026 10:45
blackmwk
requested review from
CTTY,
cwlls,
kevinjqliu and
laskoviymishka
and removed request for
cwlls
September 18, 2026 12:48
laskoviymishka
approved these changes
Sep 18, 2026
| - name: Cache Rust artifacts | ||
| if: runner.os != 'Linux' | ||
| uses: swatinem/rust-cache@6323deb102c322ba6fcbdcafc7e3dddab59af2b6 # v2.9.2 | ||
| uses: Swatinem/rust-cache@6323deb102c322ba6fcbdcafc7e3dddab59af2b6 # v2.9.2 |
Contributor
There was a problem hiding this comment.
this stuff is case sensitive? O_O
Contributor
There was a problem hiding this comment.
yea i guess so, it was recently changed in apache/infrastructure-actions@a67a59b
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.
Which issue does this PR close?
Closes #3248.
What changes are included in this PR?
The ASF allowlist checker compares action references case-sensitively. Six workflow steps use
swatinem/rust-cache, but the approved pattern isSwatinem/rust-cache@*, causing the check to fail on every PR.Correct the owner casing in the Rust CI, Python bindings CI, and public API workflows so all six references match the approved pattern.
Are these changes tested?
Ran the exact allowlist checker pinned by this repository (
61dcea11f19e2bbe1263f14d72235e8da17d3ad0) against the current ASF allowlist, applying the same local-action reference normalization as CI:git diff --checkpasses.The existing allowlist check covers this workflow-only change.
AI Disclosure
This PR was prepared with assistance from OpenAI Codex.