bito-code-review[bot] commented on PR #43477:
URL: https://github.com/apache/superset/pull/43477#issuecomment-5415401605

   <!-- Bito Reply -->
   The concern regarding the use of `ubuntu-slim` for jobs that require Docker 
is valid, as `ubuntu-slim` runners do not provide a Docker daemon. In the file 
`.github/workflows/superset-python-unittest-report.yml`, the `report` job has 
been updated to use `ubuntu-slim`, which will cause the 
`EnricoMi/publish-unit-test-result-action` to fail if it relies on Docker for 
publishing annotations. To resolve this, the `report` job should be reverted to 
a full runner (e.g., `ubuntu-26.04`) or configured to use a non-Docker variant 
of the action if available.
   
   **.github/workflows/superset-python-unittest-report.yml**
   ```
   report:
   -    runs-on: ubuntu-26.04
   +    runs-on: ubuntu-slim
        timeout-minutes: 10
   ```


-- 
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