diff --git a/.github/workflows/test_tube.yml b/.github/workflows/test_tube.yml index 909a8c839..6eb569763 100644 --- a/.github/workflows/test_tube.yml +++ b/.github/workflows/test_tube.yml @@ -17,18 +17,16 @@ jobs: - name: Checkout sources uses: actions/checkout@v3 - # https://github.com/orgs/community/discussions/25678 - - name: Free up disk space on runner - run: | - df -h - rm -rf /usr/share/dotnet/ - sudo apt-get remove -y 'php.*' - sudo apt-get remove -y '^dotnet-.*' - sudo apt-get remove -y azure-cli firefox powershell mono-devel - sudo apt-get autoremove -y - sudo apt-get clean - df -h - shell: bash + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main + with: + tool-cache: false + android: true + dotnet: true + haskell: true + large-packages: true + docker-images: true + swap-storage: true - name: Install latest nightly toolchain uses: actions-rs/toolchain@v1