From 18c58d6cb86cd6a14843e3def69eb26d76490dd5 Mon Sep 17 00:00:00 2001 From: scito Date: Sat, 1 Mar 2025 14:13:45 +0100 Subject: [PATCH] ci: update setup-python action to use main branch to fix pypy and Linux arm64 incompatibility --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ec9209..84acde8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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' }}