Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
node-version: "20"
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
with:
python-version: "3.11"
Comment on lines +28 to 30

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚪ LOW RISK

Suggestion: CI execution time is increased by re-downloading Python dependencies on every run. Enabling the built-in caching mechanism in setup-python would optimize workflow performance by persisting the pip cache across runs. Try running the following prompt in your coding agent: > Update the actions/setup-python step in .github/workflows/ci.yml to include cache: 'pip' and cache-dependency-path: 'requirements-ci.txt'.

- name: Install docs dependencies
Expand Down
Loading