From db5bd1ee6a8b1c6829b3f1659777798b8fb79efe Mon Sep 17 00:00:00 2001 From: Dominik Holler Date: Fri, 14 Aug 2026 09:57:13 +0200 Subject: [PATCH] Pin buildah-build to v2.13 to avoid parallel multi-arch builds v3 builds all archs concurrently via qemu emulation, overloading the GitHub runner. v2.13 predates that change and builds archs serially. --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index fc2afb1..0a45379 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -23,7 +23,7 @@ jobs: - name: Build Image id: build_image - uses: redhat-actions/buildah-build@v3 + uses: redhat-actions/buildah-build@v2.13 with: image: ${{ github.event.repository.name }} tags: ${{ github.event_name == 'pull_request' && github.sha || (github.ref_name == 'main' && 'latest' || github.ref_name) }}