From 3c55c7c0d558743ee408021919263cd803b7dadf Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Thu, 12 Feb 2026 12:14:11 +0100 Subject: [PATCH] ci: fix publish workflow by updating Python and setup-python action Python 3.9 is no longer available on GitHub runners and actions/setup-python@v1 is deprecated. Update to Python 3.12 and actions/setup-python@v5. --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a21852e..7409e55 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -24,10 +24,10 @@ jobs: with: ref: ${{ inputs.tag && format('refs/tags/{0}', inputs.tag) || github.ref }} fetch-depth: 0 - - name: Set up Python 3.9 - uses: actions/setup-python@v1 + - name: Set up Python 3.12 + uses: actions/setup-python@v5 with: - python-version: 3.9 + python-version: "3.12" - name: Install pypa/build run: >-