From 28700125bbc1d353c9a65140cda1f97046c35abb Mon Sep 17 00:00:00 2001 From: Mike Cousins Date: Fri, 3 Nov 2023 08:49:56 -0400 Subject: [PATCH] wip: see if python 3.7 can work with new poetry --- .github/actions/setup/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 0396bf8..dcf1465 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -23,6 +23,7 @@ runs: update-environment: false - name: 'Set up Python 3.12 for Poetry' + id: setup-poetry-python uses: actions/setup-python@v4 with: python-version: 3.12 @@ -47,7 +48,7 @@ runs: shell: bash run: | if ! poetry --version; then - "${{ steps.setup-python.outputs.python-path }}" -m venv "${{ inputs.cache }}/tools" + "${{ steps.setup-poetry-python.outputs.python-path }}" -m venv "${{ inputs.cache }}/tools" pip install poetry==${{ inputs.poetry-version }} fi