From ec6bcf297e04841e90fb27367fd220ab3c6bf1c4 Mon Sep 17 00:00:00 2001 From: Marvin Vogt Date: Wed, 11 Sep 2024 10:49:08 +0200 Subject: [PATCH] Run all workflows on `ubuntu-latest` (#108) --- .github/workflows/test.yml | 2 +- .github/workflows/verify.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 24a47de..9970816 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ permissions: jobs: test: name: test with Python ${{ matrix.python_version }} - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest strategy: matrix: python_version: ["3.11", "3.12"] diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 9c9df40..f7f4f43 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -10,7 +10,7 @@ env: jobs: lint: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: pdm-project/setup-pdm@v4 @@ -19,7 +19,7 @@ jobs: - run: pip3 install nox - run: nox -s lint check-lockfile: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: pdm-project/setup-pdm@v4 @@ -28,7 +28,7 @@ jobs: - run: pip3 install nox - run: nox -s lockfile type-check: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: pdm-project/setup-pdm@v4 @@ -37,7 +37,7 @@ jobs: - run: pip3 install nox - run: nox -s mypy spellcheck: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: check for typos