From 9a70d3a8c06f0506b04e90555f377a39a026173c Mon Sep 17 00:00:00 2001 From: Daniel Hollas Date: Thu, 22 Jan 2026 18:34:22 +0000 Subject: [PATCH 1/2] Update CI --- .github/workflows/ci.yml | 6 +++--- .github/workflows/publish.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d192127..34d23ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,16 +21,16 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} - name: Set up uv - uses: astral-sh/setup-uv@v1 + uses: astral-sh/setup-uv@v7 with: - version: "0.4.20" + version: "0.9.26" - name: Test script with `uv run` run: | diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2e9deb0..4ea5162 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 @@ -40,7 +40,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v7 with: name: Packages path: dist @@ -75,7 +75,7 @@ jobs: id-token: write steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v7 with: name: Packages path: dist From f07734c00e58a94c6b2f4ab2d01ffde373a24d3e Mon Sep 17 00:00:00 2001 From: Daniel Hollas Date: Mon, 9 Feb 2026 19:16:55 +0000 Subject: [PATCH 2/2] Test with Python 3.14 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34d23ac..0b46a88 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python: ["3.9", "3.13"] + python: ["3.9", "3.14"] runs-on: ubuntu-22.04