From 94eb907a8fe3164d03a91a3174217816143c0966 Mon Sep 17 00:00:00 2001
From: Oliver Hamlet <git@ortham.net>
Date: Mon, 13 Jan 2025 21:36:56 +0000
Subject: [PATCH] Migrate to the ubuntu-24.04 GitHub Actions runner

The ubuntu-20.04 runner is due to be deprecated on 2025-02-01 and unsupported by 2025-04-01.
---
 .github/workflows/ci.yml      | 2 +-
 .github/workflows/release.yml | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 4a2aaa7..577d31c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -12,7 +12,7 @@ env:
 
 jobs:
   linux:
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-24.04
 
     env:
       ICU_MAJOR_VERSION: 71
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 94c3592..0e37857 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -9,7 +9,7 @@ env:
 
 jobs:
   create_release:
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-24.04
     outputs:
       upload_url: ${{ steps.create_release.outputs.upload_url }}
       git_tag: ${{ steps.get-git-tag.outputs.name }}
@@ -32,7 +32,7 @@ jobs:
             The `metadata-validator.tar.xz` file contains a Linux binary.
 
   linux:
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-24.04
     needs: create_release
 
     env: