action.yml:38
The configuration to cache pip dependencies for the `actions/setup-python` step has been removed. This will cause all Python dependencies to be downloaded and installed from scratch on every workflow run, which can significantly increase the action's execution time and network usage. While this ensures a completely clean environment, it is a performance regression.
💡 If this change was unintentional, please restore the caching configuration to improve performance. If disabling the cache was deliberate, consider adding a comment explaining the reason. To re-enable caching, add the following lines back under the `with` block:
```yaml
cache: pip
cache-dependency-path: ${{ github.action_path }}/runner/requirements.txt
```