rusackas opened a new pull request, #44065:
URL: https://github.com/apache/superset/pull/44065

   ### SUMMARY
   `.github/workflows/superset-python-integrationtest.yml`'s `changes` job 
referenced the local `change-detector` composite action with the 
workspace-relative `uses: ./...` form. zizmor's `self-repository` audit flags 
this because the `./` form resolves against runtime filesystem state rather 
than a pinned ref. GitHub's dedicated `$/` self-repository syntax always 
resolves the action to the exact commit the workflow itself is running at, with 
no checkout required, and is treated by GitHub as a pinned reference.
   
   This swaps the one flagged `uses: ./.github/actions/change-detector/` to 
`uses: $/.github/actions/change-detector/`, matching the fix already applied to 
the equivalent job in other workflows (e.g. #43971, #43961, #43968, #43969).
   
   Resolves code-scanning alert #2652 
(https://github.com/apache/superset/security/code-scanning/2652).
   
   ### BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
   N/A (CI workflow file only)
   
   ### TESTING INSTRUCTIONS
   - `pre-commit run --files 
.github/workflows/superset-python-integrationtest.yml` passes (zizmor no longer 
flags the line)
   - CI on this PR exercises the `changes` job itself, confirming 
`$/.github/actions/change-detector/` resolves correctly
   
   ### 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]

Reply via email to