From 59ebb1c81f7fa4a5eb565801f5af5bf09edff30a Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Fri, 10 Jan 2025 14:43:55 +0100 Subject: [PATCH] Revert "Update ubuntu runner to 'ubuntu-24.04'" This reverts commit 29595055c8fad35e7ac750d6ddeb78c83c7ec1f9. We prefer to stick with older ubuntu releases for building because of https://github.com/containers/gvisor-tap-vsock/issues/256 The issue with qemu with ubuntu 20.04 was fixed with https://github.com/containers/gvisor-tap-vsock/commit/fe7285a8a6a Ubuntu 20.04 will be EOL'ed in April and the runner images will also go away so we'll need to revisit this: https://github.com/actions/runner-images/issues/11101 Some options are to switch to Ubuntu 22.04 for our builds, or to look into having pure go builds or statically linked builds, ... Signed-off-by: Christophe Fergeau --- .github/workflows/go.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 0ac528112..03811d18e 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -9,7 +9,7 @@ on: jobs: build: - runs-on: ubuntu-24.04 + runs-on: ubuntu-20.04 # explicitly use 20.04, see commit 428c40018f timeout-minutes: 30 strategy: fail-fast: false diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d817aa2d6..8133486c4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ on: jobs: build: - runs-on: ubuntu-20.04 # explicitly use 20.04, see commit 428c40018a + runs-on: ubuntu-20.04 # explicitly use 20.04, see commit 428c40018f timeout-minutes: 30 strategy: fail-fast: false