Skip to content

Commit

Permalink
Run all workflows on ubuntu-latest (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
SRv6d authored Sep 11, 2024
1 parent 9d07806 commit ec6bcf2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit ec6bcf2

Please sign in to comment.