diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db88c07..75efb6c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,9 +26,9 @@ jobs: with: python-version: '3.x' - name: Install and configure Poetry - uses: snok/install-poetry@v1.1.1 - with: - virtualenvs-create: false + run: | + pip install -U pip poetry + poetry config virtualenvs.create false - name: CI env: MYSQL_PASS: root diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 3ee17f3..c07d631 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -12,9 +12,9 @@ jobs: with: python-version: '3.x' - name: Install and configure Poetry - uses: snok/install-poetry@v1.1.1 - with: - virtualenvs-create: false + run: | + pip install -U pip poetry + poetry config virtualenvs.create false - name: Build dists run: make build - name: Pypi Publish