From 237f4efa67e8cb9debbda3ee84a622010a691da4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20M=C3=BCller?= Date: Sun, 6 Oct 2024 13:20:56 +0200 Subject: [PATCH] Use python from install --- .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 9bc8baed..634eaccb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,6 +30,7 @@ jobs: - name: Install Python uses: actions/setup-python@v5 + id: python_3_9 with: python-version: '3.9.13' @@ -37,7 +38,7 @@ jobs: run: python -m pip install --upgrade pip - name: Install Mercurial - run: pip install mercurial + run: pip --python '${{ steps.python_3_9.outputs.python-path}}'' install mercurial - name: Install Crystal uses: oprypin/install-crystal@v1