From e25a21ecc41129364107bb9ebba4027553f08c46 Mon Sep 17 00:00:00 2001 From: Umberto Griffo <1609440+umbertogriffo@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:28:23 +0000 Subject: [PATCH] fix: install the right version of Python on CI --- .github/workflows/ci.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f2fabcd..1ae78aa 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,6 +26,11 @@ jobs: ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} + - name: Install Python + uses: actions/setup-python@v5 + with: + python-version: '3.10.6' + - name: Get poetry version id: poetry-version run: echo "poetry-version=$(cat version/poetry)" >> "$GITHUB_OUTPUT"