Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
Copy link

Choose a reason for hiding this comment

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

Python 3.8 in matrix may fail with setup-python v6

Medium Severity

The python-version matrix still includes "3.8", but the upgrade to actions/setup-python@v6 may break this entry. Python 3.8 reached EOL in October 2024, and the actions/python-versions repository has dropped EOL Python versions (setting 3.9 as the new base). The setup-python v6 docs note that EOL versions are unsupported after a 6-month grace period. The matrix needs updating to remove "3.8" to avoid CI failures.

Additional Locations (1)
Fix in Cursor Fix in Web


- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -39,10 +39,10 @@ jobs:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: "3.11"

Expand Down