You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

disk-clean.yml 647B

12345678910111213141516171819202122232425
  1. name: disk-clean
  2. on:
  3. workflow_call:
  4. jobs:
  5. triage:
  6. runs-on: ubuntu-latest
  7. steps:
  8. - uses: actions/checkout@v4
  9. - name: Free Disk Space (Ubuntu)
  10. uses: jlumbroso/free-disk-space@main
  11. with:
  12. # this might remove tools that are actually needed,
  13. # if set to "true" but frees about 6 GB
  14. tool-cache: false
  15. # all of these default to true, but feel free to set to
  16. # "false" if necessary for your workflow
  17. android: true
  18. dotnet: true
  19. haskell: true
  20. large-packages: false
  21. docker-images: false
  22. swap-storage: true