From 22468937313b4c7471ff03d0d2a85a99a93f7630 Mon Sep 17 00:00:00 2001 From: Romain Failliot Date: Tue, 10 Mar 2026 22:51:13 -0400 Subject: [PATCH] fix(cicd): revert back to ubuntu 24.04 Apparently that GitHub actions don't support Ubuntu 24.04. https://docs.github.com/en/actions/how-tos/write-workflows/choose-where-workflows-run/choose-the-runner-for-a-job#standard-github-hosted-runners-for-public-repositories --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 520588c..236b65e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: lint: - runs-on: ubuntu-26.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v6 - uses: actions/setup-python@v6 @@ -38,7 +38,7 @@ jobs: mypy src/ po/ meson-build-test: - runs-on: ubuntu-26.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v6 - uses: actions/setup-python@v6 @@ -50,7 +50,7 @@ jobs: - run: meson test --print-errorlogs -C build flatpak-build-test: - runs-on: ubuntu-26.04 + runs-on: ubuntu-24.04 container: image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-48 options: --privileged