From f4e0dbc1837a99a41d75532f4a8d6f5581c8401c Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Mon, 25 Aug 2025 13:49:21 +0200 Subject: [PATCH 1/2] Upgrade to an Ubuntu 24.04 runner --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7bde3c..9efafa8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ on: [push, pull_request] jobs: tests: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - name: Checkout code uses: actions/checkout@v4 @@ -22,7 +22,7 @@ jobs: run: 'make test' code-quality: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - name: Checkout code uses: actions/checkout@v4 From 7c331a1b640aef58fffbffe97604e96093016006 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Mon, 25 Aug 2025 13:51:29 +0200 Subject: [PATCH 2/2] Remove the code-quality check at least for now --- .github/workflows/ci.yml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9efafa8..6b8ed82 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,16 +20,3 @@ jobs: - name: Run tests run: 'make test' - - code-quality: - runs-on: ubuntu-24.04 - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - submodules: recursive - - - name: Run tests - run: | - vim --version - make check