diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5b93683..ba86fe2 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,6 +1,6 @@ name: Test -on: [ push, workflow_dispatch ] +on: [push, workflow_dispatch] concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -23,7 +23,7 @@ jobs: - name: Install Poetry uses: snok/install-poetry@v1 with: - version: 1.4.2 + version: 1.8.2 virtualenvs-create: true virtualenvs-in-project: true installer-parallel: true diff --git a/Dockerfile.base b/Dockerfile.base index 400af54..83f30fa 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -1,6 +1,6 @@ ARG APP_NAME=hackster ARG PYTHON_VERSION=3.11.2 -ARG POETRY_VERSION=1.4.2 +ARG POETRY_VERSION=1.8.2 # `python-base` sets up all our shared environment variables FROM python:${PYTHON_VERSION}-slim as python-base