fix(ci) - remove debian:11 from CI test matrices (EOL) - #1736
Open
Venkumahanti Subhankar (V-Subhankar-infy) wants to merge 2 commits into
Open
fix(ci) - remove debian:11 from CI test matrices (EOL)#1736Venkumahanti Subhankar (V-Subhankar-infy) wants to merge 2 commits into
Venkumahanti Subhankar (V-Subhankar-infy) wants to merge 2 commits into
Conversation
Venkumahanti Subhankar (V-Subhankar-infy)
requested a lite review from Copilot
September 9, 2026 11:04
Copilot started reviewing on behalf of
Venkumahanti Subhankar (V-Subhankar-infy)
September 9, 2026 11:05
View session
Contributor
There was a problem hiding this comment.
🟢 Approval recommended
The change cleanly removes an EOL base image from CI matrices without leaving any dangling exclude references or altering feature support.
Pull request overview
This PR updates the GitHub Actions CI test matrices to stop running Feature tests on debian:11, which is now EOL and causes deterministic apt-get update failures due to expired release metadata.
Changes:
- Removed
debian:11from thebaseImagematrix in the PR workflow (test-pr.yaml). - Removed
debian:11from thebaseImagematrix in the full test workflow (test-all.yaml). - Kept existing matrix
exclude:entries intact (none referenceddebian:11).
File summaries
| File | Description |
|---|---|
| .github/workflows/test-pr.yaml | Drops debian:11 from the PR test matrix to prevent permanent red CI runs. |
| .github/workflows/test-all.yaml | Drops debian:11 from the full test matrix to keep CI coverage aligned with supported base images. |
Review details
- Files reviewed: 2/2 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Venkumahanti Subhankar (V-Subhankar-infy)
marked this pull request as ready for review
September 10, 2026 02:49
Venkumahanti Subhankar (V-Subhankar-infy)
requested a review
from a team
as a code owner
September 10, 2026 02:49
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.
Problem
Every PR touching any Feature gets red
test (<feature>, debian:11)jobs.Debian 11 reached EOL on 2026-08-31. Its security archive stopped being re-signed
that day, and APT release files are valid for 7 days, so the metadata expired on
2026-09-07. Feature
install.shscripts run underset -eand install aptprerequisites first, so every Feature fails identically. This is permanent, not a
flake; re-running will not help.
Verified 2026-09-09:
Change
Removes
"debian:11"from thebaseImagematrix intest-pr.yamlandtest-all.yaml. Noexclude:entries referenced it.This removes CI coverage only. No Feature drops Debian 11 support: no
install.sh, nodevcontainer-feature.json, and no Feature version is touched.test-pr-arm64.yamlalready excludes debian:11 and anticipated this EOL date, sothis just makes the amd64 matrices consistent with it.
Alternatives considered
Acquire::Check-Valid-Until=false: disables APT freshness and signature checksrepo-wide to paper over an EOL image.
archive.debian.org: keeps CI validating an unsupported distro, and the host israte-limited and unsuited to CI load.
continue-on-error: true: trains contributors toignore red checks.
Follow-up (out of scope)
14 scenarios across 7 Features still pin bullseye images in their own
scenarios.json. Those run intest-scenarios, which ignores this matrix, sothey are a separate pre-existing failure best fixed in its own PR.