From eb3e8211ba11c8b0f60a3ad6cde13e9501694dd6 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 9 Sep 2024 15:46:32 -0400 Subject: [PATCH] chore: add 3.13 to the action defaults Signed-off-by: Henry Schreiner --- .github/workflows/action.yml | 6 ++---- action.yml | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 7b851c62..62c98483 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -20,12 +20,10 @@ jobs: matrix: os: [ - ubuntu-20.04, ubuntu-22.04, + ubuntu-24.04, windows-2019, windows-2022, - macos-11, - macos-12, macos-13, macos-14, ] @@ -44,5 +42,5 @@ jobs: python-version: 3.9 - uses: ./ with: - python-versions: "3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, pypy-2.7, pypy-3.7, pypy-3.8, pypy-3.9, pypy-3.10" + python-versions: "3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, pypy-2.7, pypy-3.7, pypy-3.8, pypy-3.9, pypy-3.10" - run: nox --non-interactive --error-on-missing-interpreter --session github_actions_all_tests diff --git a/action.yml b/action.yml index c7990317..bb697761 100644 --- a/action.yml +++ b/action.yml @@ -4,7 +4,7 @@ inputs: python-versions: description: "comma-separated list of python versions to install" required: false - default: "3.8, 3.9, 3.10, 3.11, 3.12, pypy-3.9, pypy-3.10" + default: "3.8, 3.9, 3.10, 3.11, 3.12, 3.13, pypy-3.9, pypy-3.10" branding: icon: package color: blue