From 2d7339599d9ce7c549b8cbf45257c5f9cf4114f5 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Mon, 16 Sep 2024 10:06:30 -0500 Subject: [PATCH] apt purge is failing --- .github/actions/clean-disk/action.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/clean-disk/action.yml b/.github/actions/clean-disk/action.yml index 1f690f5..fa5c51b 100644 --- a/.github/actions/clean-disk/action.yml +++ b/.github/actions/clean-disk/action.yml @@ -34,11 +34,11 @@ runs: echo "Removing unwanted software... " - if [[ "${{ inputs.purge-packages }}" == 'true' ]]; then - sudo apt-get purge \ - --allow-remove-essential \ - $(non_manifest_packages) # > /dev/null - fi + # if [[ "${{ inputs.purge-packages }}" == 'true' ]]; then + # sudo apt-get purge \ + # --allow-remove-essential \ + # $(non_manifest_packages) # > /dev/null + # fi sudo rm -rf \ /var/lib/docker/ \