From 494ac988cb753ebe04f550d09cd44ef0b322aa62 Mon Sep 17 00:00:00 2001 From: Bonajo Date: Fri, 5 Sep 2025 08:18:34 +0200 Subject: [PATCH] ci: update release workflow to python 3.12, poetry not supported on 3.8 --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 554bc9f..f41b4bb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,10 +11,10 @@ jobs: release: strategy: matrix: - python-version: ["3.8"] + python-version: ["3.12"] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: @@ -27,7 +27,7 @@ jobs: installer-parallel: true - name: Load cached venv id: cached-poetry-venv - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: venv-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}