From e941adfaaa13df058cd202f9998b21654316412e Mon Sep 17 00:00:00 2001 From: Zach Wasserman Date: Thu, 22 Dec 2022 16:48:41 -0600 Subject: [PATCH] Use ubuntu-20.04 runner for Fleet build (#9114) A customer had a seccomp profile that seemed to be incompatible with the changes in glibc in ubuntu-22.04. Setting the builder back to 20.04 explicitly to resolve this issue. --- .github/workflows/goreleaser-fleet.yaml | 2 +- changes/build-ubuntu-20 | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changes/build-ubuntu-20 diff --git a/.github/workflows/goreleaser-fleet.yaml b/.github/workflows/goreleaser-fleet.yaml index 4c933c4c86..c445f49092 100644 --- a/.github/workflows/goreleaser-fleet.yaml +++ b/.github/workflows/goreleaser-fleet.yaml @@ -20,7 +20,7 @@ permissions: jobs: goreleaser: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 environment: Docker Hub permissions: contents: write diff --git a/changes/build-ubuntu-20 b/changes/build-ubuntu-20 new file mode 100644 index 0000000000..255f7acf0f --- /dev/null +++ b/changes/build-ubuntu-20 @@ -0,0 +1 @@ +* Build on Ubuntu 20 to resolve glibc changes that were causing issues for older Docker runtimes.