diff --git a/.github/actions/disk_space/action.yml b/.github/actions/disk_space/action.yml index 43ce441..1645c90 100644 --- a/.github/actions/disk_space/action.yml +++ b/.github/actions/disk_space/action.yml @@ -18,7 +18,7 @@ runs: if: inputs.debug == 'true' shell: bash run: | - du -h -d3 / 2>/dev/null | sort -hr | head -n 20 || true + du -h -d5 / 2>/dev/null | sort -hr | head -n 20 || true - name: Clear shell: bash @@ -37,4 +37,4 @@ runs: if: inputs.debug == 'true' shell: bash run: | - du -h -d3 / 2>/dev/null | sort -hr | head -n 20 || true + du -h -d5 / 2>/dev/null | sort -hr | head -n 20 || true diff --git a/.github/actions/disk_space/clean.sh b/.github/actions/disk_space/clean.sh index 25c9352..52bfe71 100755 --- a/.github/actions/disk_space/clean.sh +++ b/.github/actions/disk_space/clean.sh @@ -10,14 +10,17 @@ paths=( /usr/lib/jvm /usr/lib/llvm-* /usr/lib/google-cloud-sdk + /usr/lib/dotnet /usr/local/.ghcup /usr/local/share/chromium /usr/local/lib/android /usr/local/julia1.11.5 /opt/ghc /opt/az + /opt/pipx /opt/microsoft /opt/hostedtoolcache + /etc/skel/.rustup ) sudo rm -rf "${paths[@]}"