From 1b13c1a35536a8e04879547fd5dd0f816becd1bf Mon Sep 17 00:00:00 2001 From: Ben Webb Date: Sun, 13 Oct 2024 22:39:25 -0700 Subject: [PATCH] Use latest Ubuntu, Actions, Python --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fb1ba84..1240347 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,14 +8,14 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-22.04] - python-version: ['3.9', '3.10', '3.11', '3.12'] + os: [ubuntu-24.04] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies