diff --git a/.github/workflows/docker-develop.yml b/.github/workflows/docker-develop.yml index 07ad0610c0..5c5a6537d6 100644 --- a/.github/workflows/docker-develop.yml +++ b/.github/workflows/docker-develop.yml @@ -12,6 +12,20 @@ jobs: runs-on: ubuntu-latest if: github.repository == 'kokonect-link/cherrypick' steps: + - name: Check free disk space + run: df -h + - name: Free Up GitHub Actions Ubuntu Runner Disk Space 🔧 + uses: jlumbroso/free-disk-space@main + with: + # This might remove tools that are actually needed, if set to "true" but frees about 6 GB + tool-cache: false + + # All of these default to true, but feel free to set to "false" if necessary for your workflow + android: true + dotnet: true + haskell: true + large-packages: true + swap-storage: true - name: Check out the repo uses: actions/checkout@v4.1.0 - name: Set up Docker Buildx diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index a167e55daf..a0b2ef0c64 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -11,6 +11,20 @@ jobs: runs-on: ubuntu-latest steps: + - name: Check free disk space + run: df -h + - name: Free Up GitHub Actions Ubuntu Runner Disk Space 🔧 + uses: jlumbroso/free-disk-space@main + with: + # This might remove tools that are actually needed, if set to "true" but frees about 6 GB + tool-cache: false + + # All of these default to true, but feel free to set to "false" if necessary for your workflow + android: true + dotnet: true + haskell: true + large-packages: true + swap-storage: true - name: Check out the repo uses: actions/checkout@v4.1.0 - name: Set up Docker Buildx