diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 3c8e4fd..9528f4e 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -13,7 +13,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Install poetry - run: pipx install poetry==1.1.13 + run: pipx install poetry==1.1.15 - name: Set up Python uses: actions/setup-python@v4 with: diff --git a/Dockerfile b/Dockerfile index b7ebd44..fe88bf5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.10.7-bullseye AS venv # https://python-poetry.org/docs/#installation -ENV POETRY_VERSION=1.1.13 +ENV POETRY_VERSION=1.1.15 RUN curl -sSL https://install.python-poetry.org | python3 - ENV PATH /root/.local/bin:$PATH