From 03eaced3741078da3f436c831d1684a86626c701 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Sun, 18 May 2025 13:01:27 +0200 Subject: [PATCH] [ci] Fix PyPy venv caching issue --- .github/workflows/tests.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 70a3024caf..98df063233 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -49,7 +49,8 @@ jobs: uses: actions/checkout@v4.2.2 - name: Set up Python ${{ matrix.python-version }} id: python - uses: actions/setup-python@v5.6.0 + # Custom with PyPy fix: https://github.com/actions/setup-python/pull/1110 + uses: cdce8p/setup-python@v5.6.0-c1 with: python-version: ${{ matrix.python-version }} check-latest: true