For context this is running in ubuntu docker container as part of a build system. Two weeks ago things were fine. This clode block ran and installed ```docker RUN apt-get update && \ apt-get install -y wget software-properties-common && \ wget -qO - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \ add-apt-repository "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy main" && \ apt-get update && \ apt-get install -y clang-format && \ apt-get install -y clang-tidy && \ # Clean up the package lists to minimize the image size rm -rf /var/lib/apt/lists/* # Verify installation RUN clang-format --version RUN clang-tidy --version ``` Resulting in the desired versions being installed <img width="1024" height="452" alt="Image" src="https://github.com/user-attachments/assets/5e74def8-6d19-4d33-a987-60ed440784ae" /> but now when I run the same pipeline I get <img width="1174" height="1320" alt="Image" src="https://github.com/user-attachments/assets/e0ed6f2c-ece1-4e0c-843c-70f8aae90f32" /> Any ideas?