From 67f75f4689651d44d759c5ac8cb5a5cc7d64fe94 Mon Sep 17 00:00:00 2001 From: Lewis Gaul Date: Mon, 21 Oct 2024 16:23:48 +0100 Subject: [PATCH] Specify ubuntu-24.04 in the GitHub actions config (#645) Partially fixes https://github.com/gabrieldemarmiesse/python-on-whales/issues/644 --- .github/workflows/python-package.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 5c79cc45..32064db6 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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 @@ -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 @@ -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 @@ -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