From 1e578200c64298bf0988062c406f15ef156374ca Mon Sep 17 00:00:00 2001 From: castrojo Date: Thu, 6 Aug 2026 21:10:14 -0400 Subject: [PATCH] ci: move image builds to ubuntu-26.04 Ubuntu 26.04 ships podman 5.7.0 from apt at /usr/bin/podman, whereas the 24.04 runner image now installs it as a static bundle in /usr/local/bin. The Justfile only probes /usr/bin/podman, so builds on 24.04 silently fell back to docker and failed with "max depth exceeded" once the F44 base image grew past overlay2's 128 layer cap. Assisted-by: Claude Opus 5 via GitHub Copilot CLI Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/reusable-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable-build.yml b/.github/workflows/reusable-build.yml index 6a8358409b0..adfcca46fdd 100644 --- a/.github/workflows/reusable-build.yml +++ b/.github/workflows/reusable-build.yml @@ -31,7 +31,7 @@ permissions: {} jobs: build_container: name: image - runs-on: ubuntu-24.04 + runs-on: ubuntu-26.04 permissions: contents: read packages: write