Skip to content

Commit

Permalink
Specify ubuntu-24.04 in the GitHub actions config (#645)
Browse files Browse the repository at this point in the history
Partially fixes
#644
  • Loading branch information
LewisGaul authored Oct 21, 2024
1 parent 40e1f27 commit 67f75f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
render-docs:
name: Render docs
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand All @@ -27,7 +27,7 @@ jobs:
run: mkdocs build

build-linux-lint:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
- test_system.py
- test_task.py
- test_volume.py
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -78,7 +78,7 @@ jobs:
python -m pytest -vv --no-runtime-skip --durations=10 tests/python_on_whales/components/${{ matrix.component }}
build-linux-test-other:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down

0 comments on commit 67f75f4

Please sign in to comment.