From ec3cfd3ab7e3cffb34180304f7d5d54198e09779 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sat, 9 Aug 2025 00:42:47 -0400 Subject: [PATCH] Explicitly install python3 after removing various unnecessary packages --- .github/actions/build-dependencies/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/build-dependencies/action.yml b/.github/actions/build-dependencies/action.yml index f90c1420..fc74e26e 100644 --- a/.github/actions/build-dependencies/action.yml +++ b/.github/actions/build-dependencies/action.yml @@ -10,7 +10,7 @@ runs: sudo apt remove -y "*powershell*" "*nuget*" "*bazel*" "*ansible*" "*terraform*" "*heroku*" "*aws*" azure-cli sudo apt remove -y "*nodejs*" "*npm*" "*yarn*" "*java*" "*kotlin*" "*golang*" "*swift*" "*julia*" "*fortran*" "*android*" sudo apt remove -y "*apache2*" "*nginx*" "*firefox*" "*chromium*" "*chrome*" "*edge*" - sudo apt update -y && sudo apt upgrade -y && sudo apt install --fix-missing -y + sudo apt update -y && sudo apt upgrade -y && sudo apt install --fix-missing -y python3 sudo apt remove -y "*qemu*" "*sql*" "*texinfo*" "*imagemagick*" sudo apt autoremove -y sudo apt clean