From 98aa2e3c3c5fdd7fec5b54273b4d081b7114ca8c Mon Sep 17 00:00:00 2001 From: Torsten Kilias Date: Fri, 14 Feb 2025 11:19:19 +0100 Subject: [PATCH] Use poetry 2.0.1 in all github workflows --- .github/workflows/checks.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 4a739d57..e99a172b 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -65,6 +65,7 @@ jobs: uses: exasol/python-toolbox/.github/actions/python-environment@0.20.0 with: python-version: ${{ matrix.python-version }} + poetry-version: 2.0.1 - name: Run lint run: poetry run nox -s lint:code @@ -92,6 +93,7 @@ jobs: uses: exasol/python-toolbox/.github/actions/python-environment@0.20.0 with: python-version: ${{ matrix.python-version }} + poetry-version: 2.0.1 - name: Run type-check run: poetry run nox -s lint:typing @@ -112,6 +114,7 @@ jobs: uses: exasol/python-toolbox/.github/actions/python-environment@0.20.0 with: python-version: ${{ matrix.python-version }} + poetry-version: 2.0.1 - name: Run security linter run: poetry run nox -s lint:security @@ -135,6 +138,7 @@ jobs: uses: exasol/python-toolbox/.github/actions/python-environment@0.20.0 with: python-version: "3.9" + poetry-version: 2.0.1 - name: Run format check run: poetry run nox -s project:format @@ -157,6 +161,7 @@ jobs: uses: exasol/python-toolbox/.github/actions/python-environment@0.20.0 with: python-version: ${{ matrix.python-version }} + poetry-version: 2.0.1 - name: Run Tests and Collect Coverage run: poetry run nox -s test:unit -- -- --coverage