From 2eb76407f551cecc83d0a2c1a918d240f106a562 Mon Sep 17 00:00:00 2001 From: "Konstantin (Tino) Sering" Date: Mon, 8 Apr 2024 17:41:12 +0200 Subject: [PATCH] fixes github action for testing and configuring poetry --- .github/workflows/python-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index c4cb91e..59d5c81 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -15,11 +15,11 @@ jobs: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] python-version: ['3.8', '3.12'] - poetry-version: [1.1.13] + poetry-version: ["1.7.1"] fail-fast: false runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 @@ -31,7 +31,7 @@ jobs: run: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))") - name: Setup poetry - uses: abatilo/actions-poetry@v2.1.3 + uses: abatilo/actions-poetry@v2 with: poetry-version: ${{ matrix.poetry-version }}