From 44ca5e65205a687f5a862a68449063604ef8435a Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Tue, 10 Oct 2023 22:29:25 -0400 Subject: [PATCH] Manually reinstall python3 after removing most packages --- .github/actions/build-dependencies/action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/actions/build-dependencies/action.yml b/.github/actions/build-dependencies/action.yml index 37f63ac2..9bfd780a 100644 --- a/.github/actions/build-dependencies/action.yml +++ b/.github/actions/build-dependencies/action.yml @@ -22,7 +22,10 @@ runs: steps: - name: Remove unused packages shell: bash - run: sudo apt remove -y *powershell* *bazel* *nodejs* *npm* *yarn* *terraform* *firefox* *chromium* *qemu* *texinfo* *sqlite3* *imagemagick* && sudo apt autoremove -y + run: | + sudo apt remove -y *powershell* *bazel* *nodejs* *npm* *yarn* *terraform* *firefox* *chromium* *qemu* *texinfo* *imagemagick* + sudo apt autoremove -y + sudo apt install python3 -y - name: Install Protobuf uses: arduino/setup-protoc@a8b67ba40b37d35169e222f3bb352603327985b6