diff --git a/setup-poetry/README.md b/setup-poetry/README.md index fa38995..dfee7e9 100644 --- a/setup-poetry/README.md +++ b/setup-poetry/README.md @@ -6,7 +6,7 @@ speed up workflows. This action installs Poetry using the Python version that was selected by the `ni/python-actions/setup-python` action, so you must call `ni/python-actions/setup-python` first. -By default, this action installs Poetry 2.1.4. +By default, this action installs Poetry 2.4.1. ## Usage @@ -30,7 +30,7 @@ steps: - uses: ni/python-actions/setup-python@v0 - uses: ni/python-actions/setup-poetry@v0 with: - poetry-version: 2.1.4 + poetry-version: 2.4.1 - run: poetry install -v ``` diff --git a/setup-poetry/action.yml b/setup-poetry/action.yml index 5a93e02..7be0b71 100644 --- a/setup-poetry/action.yml +++ b/setup-poetry/action.yml @@ -2,7 +2,7 @@ name: Set up Poetry description: Install Poetry, add it to the PATH, and cache it to speed up workflows. inputs: poetry-version: - default: 2.1.4 + default: 2.4.1 use-cache: description: > A Boolean specifying whether to use the cache. Set this to false to work