From f6186d4123cc516cddef18c44cac1b8a9122157b Mon Sep 17 00:00:00 2001 From: Andrew Bird Date: Sat, 4 Apr 2026 13:32:04 +0100 Subject: [PATCH] CI: Update workflow 1/ Runner 20.04 now unavailable 2/ Node 20 actions are now deprecated --- .github/workflows/ci-build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 301fb81..d9a22c3 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -3,7 +3,6 @@ on: pull_request: types: - opened - - edited - ready_for_review - reopened - synchronize @@ -13,11 +12,11 @@ jobs: build: if: contains(github.event.head_commit.message, '[skip ci]') == false - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - name: Checkout repository and submodules - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: submodules: recursive