From 4bf44ebdf4ac04660a9258363e3f1bac9594563f Mon Sep 17 00:00:00 2001 From: Cvolton Date: Mon, 9 Dec 2024 15:35:23 +0100 Subject: [PATCH] use ubuntu 22.04 to build linux cli --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e180f0..fe8b599 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,7 +41,11 @@ jobs: - name: "Linux" id: linux - os: ubuntu-latest + os: ubuntu-22.04 + # ubuntu-latest is currently a mix of 22.04 and 24.04 + # so we are not able to use that until January 17, 2025 at least + # if we want compatibility with said version on GH actions + # see also https://github.com/actions/runner-images/issues/10636 executable: 'geode' # some stupid old ubuntu versions cant install libssl3 prebuild: 'export OPENSSL_STATIC=1'