From 19345dc5d605d3f6876783b4ba496556abc978b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Fri, 20 Dec 2024 00:44:35 +0100 Subject: [PATCH] ci: Pin runners to ubuntu 22.04 --- .github/workflows/ci.yml | 6 +++--- .github/workflows/dockerhub.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 90b9d920d..ee1492ed8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: jobs: lint: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - name: Install uv and set the python version @@ -21,7 +21,7 @@ jobs: test: # Dependency on linting to avoid running our expensive matrix test for nothing needs: lint - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 # Use postgresql and MariaDB versions of Debian bookworm services: postgres: @@ -111,7 +111,7 @@ jobs: }} docs: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - name: Install uv and set the python version diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml index 6c8a47b20..11ab270c2 100644 --- a/.github/workflows/dockerhub.yml +++ b/.github/workflows/dockerhub.yml @@ -10,7 +10,7 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v2 @@ -19,7 +19,7 @@ jobs: run: docker compose -f docker-compose.test.yml run sut build_upload: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: test if: github.event_name != 'pull_request' steps: