CD: pin GNU Linux builds to ubuntu-22.04 for Debian 12 compat#2135
Merged
Conversation
ubuntu-latest is now 24.04 (glibc 2.39), making .deb packages uninstallable on Debian 12 (glibc 2.36). Pin to 22.04 (glibc 2.35).
This allows triggering the build on a branch to verify binaries are built correctly without creating a release or publishing.
This reverts commit 2a27bfe.
Add a verify-release job that runs after publish and checks: - All expected release assets (tarballs, zips, debs) are present - The amd64 .deb installs and runs on Debian 12 (via docker) - All .deb packages require libc6 <= 2.36 (Debian 12's version)
The release notification email is sent when the release is published. Creating as draft lets the maintainer write release notes before publishing, so subscribers see complete changelogs.
tmeijn
pushed a commit
to tmeijn/dotfiles
that referenced
this pull request
Apr 2, 2026
This MR contains the following updates: | Package | Update | Change | |---|---|---| | [dandavison/delta](https://github.com/dandavison/delta) | patch | `0.19.1` → `0.19.2` | MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot). **Proposed changes to behavior should be submitted there as MRs.** --- ### Release Notes <details> <summary>dandavison/delta (dandavison/delta)</summary> ### [`v0.19.2`](https://github.com/dandavison/delta/releases/tag/0.19.2) [Compare Source](dandavison/delta@0.19.1...0.19.2) This is a patch release providing rebuilt binaries compatible with Debian 12 (the 0.19.0 and 0.19.1 .deb packages required glibc 2.39, which is only available in Debian 13). #### What's Changed - CD: pin GNU Linux builds to ubuntu-22.04 for Debian 12 compat by [@​dandavison](https://github.com/dandavison) in [#​2135](dandavison/delta#2135) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMDIuMTAiLCJ1cGRhdGVkSW5WZXIiOiI0My4xMDIuMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbIlJlbm92YXRlIEJvdCIsImF1dG9tYXRpb246Ym90LWF1dGhvcmVkIiwiZGVwZW5kZW5jeS10eXBlOjpwYXRjaCJdfQ==-->
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ubuntu-22.04(glibc 2.35) instead ofubuntu-latest(now 24.04, glibc 2.39)ubuntu-latestsince it's statically linkedContext
0.19.0 and 0.19.1
.debpackages foramd64haveDepends: libc6 (>= 2.39), making them uninstallable on Debian 12. 0.18.2 hadDepends: libc6 (>= 2.29).The
arm64/armhf/i386.debpackages are not affected since they're built withcross(which uses its own container), but pinning their runner toubuntu-22.04too is a reasonable precaution.