From a38c4d38b3db558b300db1bfbc885ae116de9d25 Mon Sep 17 00:00:00 2001 From: Jacob Emmert-Aronson Date: Mon, 18 Sep 2023 12:16:44 -0700 Subject: [PATCH] Add pip, venv, and pipx to act image (#74) This dramatically improves the experience of running python-based actions workflows. It adds roughly 7MB of space to the Ubuntu 20.04 image and 22MB to Ubuntu 22.04. resolves: #61 Co-authored-by: ChristopherHX --- linux/ubuntu/scripts/act.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/linux/ubuntu/scripts/act.sh b/linux/ubuntu/scripts/act.sh index 4fad1fd..4127dd8 100755 --- a/linux/ubuntu/scripts/act.sh +++ b/linux/ubuntu/scripts/act.sh @@ -55,6 +55,9 @@ packages=( zip unzip xz-utils + python3-pip + python3-venv + pipx ) apt-get -yq update