From 852b40a9cdc6e20a3e30c293c29e79c3ecfa416b 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 5ea4f7d..2a1b8d7 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'] 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