From 813561723a377c7bbb60b64a7315ae58eaded3ce Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Sun, 17 Dec 2023 15:01:07 +0100 Subject: [PATCH] Get rid of unofficial GH actions to install poetry --- .github/workflows/actions.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index bc42ce6..ddf522d 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -15,10 +15,8 @@ jobs: - uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - - name: Run image - uses: abatilo/actions-poetry@v2.0.0 - with: - poetry-version: ${{ matrix.poetry-version }} + - name: Install poetry + run: pip install poetry==${{ matrix.poetry-version}} - name: View poetry --help run: poetry --help - name: Install deps