From 4cb61f68fd44baa82867a57ed1b601720771e38d Mon Sep 17 00:00:00 2001 From: Dan Kegel Date: Fri, 19 Jul 2024 21:13:02 -0700 Subject: [PATCH] .github/workflows: pin linux version temporarily Attempt to sidestep packaging skew for the moment. See https://github.com/tinygo-org/tinygo/issues/4347 and https://github.com/llvm/llvm-project/issues/99502 --- .github/workflows/linux.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 8bb92e0832..5f78e46e44 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -16,7 +16,8 @@ jobs: # Build Linux binaries, ready for release. # This runs inside an Alpine Linux container so we can more easily create a # statically linked binary. - runs-on: ubuntu-latest + # ubuntu-latest is having some trouble, so try specific version to unbreak build + runs-on: ubuntu-20.04 container: image: golang:1.22-alpine steps: