From d1710c924fe37af1437c8c81aceec9b68c3e9cc7 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Tue, 6 May 2025 09:51:41 -0700 Subject: [PATCH] Do release builds on Ubuntu 22.04. Ubuntu 20.04 is no longer supported. Agate may require a newer version of glibc after this change, and may not run on versions of Linux older than Ubuntu 22.04. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d42b9fb..8ae0392 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: uses: ncipollo/release-action@v1 build_ubuntu: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 needs: create_release steps: - uses: actions/checkout@v4