From 2322f618e150fef590a92754543f4b980b72990b Mon Sep 17 00:00:00 2001 From: Andrew Ayer Date: Wed, 24 Sep 2025 08:56:07 -0400 Subject: [PATCH] GitHub Actions: use older version of Ubuntu for better compatibility So compiled binaries will work on older Linux distros like Debian 12. --- .github/workflows/release-linux-arm64.yml | 2 +- .github/workflows/release-linux.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-linux-arm64.yml b/.github/workflows/release-linux-arm64.yml index e868b26..4633e99 100644 --- a/.github/workflows/release-linux-arm64.yml +++ b/.github/workflows/release-linux-arm64.yml @@ -5,7 +5,7 @@ name: Build Release Binary (Linux ARM64) jobs: build: name: Build Release Binary - runs-on: ubuntu-24.04-arm + runs-on: ubuntu-22.04-arm permissions: contents: read steps: diff --git a/.github/workflows/release-linux.yml b/.github/workflows/release-linux.yml index bb6b870..fb747d6 100644 --- a/.github/workflows/release-linux.yml +++ b/.github/workflows/release-linux.yml @@ -5,7 +5,7 @@ name: Build Release Binary (Linux) jobs: build: name: Build Release Binary - runs-on: ubuntu-24.04 + runs-on: ubuntu-22.04 permissions: contents: read steps: