From 1b00e1b6e3209a457c77d341998bec0719561c6e Mon Sep 17 00:00:00 2001 From: Nicolas Bock Date: Tue, 21 May 2024 12:41:12 -0600 Subject: [PATCH] Update GitHub Actions Signed-off-by: Nicolas Bock (cherry picked from commit 7ea3a81442c1ef49c961b41b906358d52d21956e) --- .github/workflows/tests.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 5ea4f7d..b0c4219 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -6,15 +6,15 @@ on: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11'] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies