rusackas opened a new pull request, #44041: URL: https://github.com/apache/superset/pull/44041
### SUMMARY Resolves code-scanning alert [#2655](https://github.com/apache/superset/security/code-scanning/2655) (zizmor `self-repository`) at `.github/workflows/superset-python-integrationtest.yml:84`. zizmor's `self-repository` audit suggests replacing local action references like `./.github/actions/foo` with GitHub's `$/.github/actions/foo` self-repository syntax. That works for actions that live as plain directories in this repo, but `.github/actions/cached-dependencies` is a git submodule (see `.gitmodules`) — `$/` resolves action files directly from the repository content without a real, submodule-aware checkout, so it can't see into the submodule's gitlink and the step would fail to resolve the action. This keeps the workspace-relative `./` form for the "Start Celery worker" step in the `test-mysql` job, with a scoped `zizmor: ignore[self-repository]` suppression and an explanatory comment, matching the pattern already applied and merged for the other `cached-dependencies` references in this same workflow (e.g. #44018, #44038). ### TESTING INSTRUCTIONS - `pre-commit run --files .github/workflows/superset-python-integrationtest.yml` passes, including the `zizmor` hook. - `zizmor .github/workflows/superset-python-integrationtest.yml` no longer flags line 84. ### 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]
