fix(ci): remove third-party apt sources before apt-get update on Depot runners - #70774
Merged
Merged
Conversation
Contributor
🤖 CI report |
mendral-app
Bot
force-pushed
the
mendral/remove-third-party-apt-sources
branch
from
July 14, 2026 16:09
6d20bc8 to
18a9a62
Compare
…nners Depot runner images include a Twingate APT repository that can fail with 401 Unauthorized, breaking apt-get update even though our workflows only need packages from Ubuntu's official repos. Add 'sudo rm -f /etc/apt/sources.list.d/*twingate*' before every apt-get update call on Depot runners to prevent transient failures. Fixes all 14 affected locations across 8 workflow files.
mendral-app
Bot
force-pushed
the
mendral/remove-third-party-apt-sources
branch
from
July 14, 2026 17:24
18a9a62 to
627655b
Compare
gantoine
approved these changes
Jul 14, 2026
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
apt-get updateon all Depot runner workflows to prevent transient CI failures from expired/broken third-party reposci-rust,ci-rust-flags-integration,ci-backend,ci-python,ci-dagster,ci-nodejs,ci-mcp,ci-e2e-playwright)Context
Depot runner images ship with pre-installed third-party APT repos (e.g.
packages.twingate.com/apt) that our workflows don't need. When those repos return 401 or have connectivity issues,apt-get updateexits non-zero and breaks the entire step — even though we only install packages from Ubuntu's official repos.Insight: https://app.mendral.com/insights/01KXGC522N9DWJ77V092PY9SS7
Note
Created by Mendral. Tag @mendral-app with feedback or questions.