From bd2ebc4da63dd74ddabd36ee691eb1f04bf67904 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ramon=20R=C3=BCttimann?= Date: Mon, 27 Nov 2023 12:49:28 +0100 Subject: [PATCH] chore: switch ubuntu runner --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 331eccff7b4..838b0985fe1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,7 +4,10 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + # we need to use the same Ubuntu version as our final Docker (base) image + # is using in order to match glibc versions. We need glibc because we + # compile a dynamically-linked binary with boringcrypto. + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v4 - name: Setup Go