diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 8a20af74..39d9c58d 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,6 +1,6 @@ FROM quay.io/fedora/fedora:37 -ARG POETRY_VERSION=1.5.1 +ARG POETRY_VERSION=1.7.1 RUN dnf -y update && \ yum -y reinstall shadow-utils && \ diff --git a/.github/actions/setup-poetry/action.yml b/.github/actions/setup-poetry/action.yml index 8da26890..33463718 100644 --- a/.github/actions/setup-poetry/action.yml +++ b/.github/actions/setup-poetry/action.yml @@ -5,7 +5,7 @@ inputs: poetry-version: required: false description: "The poetry version to use" - default: "1.5.1" + default: "1.7.1" python-version: required: false description: "The python version to use" diff --git a/Dockerfile b/Dockerfile index 51e2f919..9ae61aea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ RUN microdnf update -y \ FROM python-base AS dependencies -ARG POETRY_VERSION=1.5.1 +ARG POETRY_VERSION=1.7.1 # https://python-poetry.org/docs/configuration/#using-environment-variables ENV POETRY_HOME="/opt/poetry" \