ci: update setup-python action to use main branch to fix pypy and Linux arm64 incompatibility

This commit is contained in:
scito
2025-03-01 14:13:45 +01:00
committed by Roland Kurmann
parent 0ad14ab908
commit 18c58d6cb8

View File

@@ -30,7 +30,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
# TODO replace setup-python@main with setup-python@v5 if https://github.com/actions/setup-python/pull/1011 is released (>=v5.5)
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
check-latest: ${{ github.event_name == 'schedule' }}