mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
c149b618a9
The shell-script-tests job installs bats via apt. GitHub's ubuntu-latest runner image preconfigures third-party apt repos (Microsoft / azure-cli) for preinstalled tooling this job never uses. When one of those repos serves invalid release metadata, `apt-get update` exits non-zero and `bash -e` aborts the step before bats installs — even though bats comes from Ubuntu's own `universe` repo, which is unaffected. This job only needs Ubuntu packages, so remove those unused third-party repos before `apt-get update`.