From c0bd150288b0a2f411efe699aeea6c945f581d7d Mon Sep 17 00:00:00 2001 From: Alper Rifat Ulucinar Date: Wed, 28 Feb 2024 21:49:12 +0300 Subject: [PATCH 1/2] Run the jlumbroso/free-disk-space action in the beginning of the pr-comment-trigger workflow Signed-off-by: Alper Rifat Ulucinar --- .github/workflows/pr-comment-trigger.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/pr-comment-trigger.yml b/.github/workflows/pr-comment-trigger.yml index 5f8b8d1..6dfb72d 100644 --- a/.github/workflows/pr-comment-trigger.yml +++ b/.github/workflows/pr-comment-trigger.yml @@ -111,6 +111,16 @@ jobs: needs: get-example-list steps: + - name: Cleanup Disk + uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1 + with: + android: true + dotnet: true + haskell: true + tool-cache: true + large-packages: false + swap-storage: false + - name: Setup QEMU uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2 with: From bb6713df900653fbcd024ee6187ee35f4177d731 Mon Sep 17 00:00:00 2001 From: Alper Rifat Ulucinar Date: Wed, 28 Feb 2024 22:09:29 +0300 Subject: [PATCH 2/2] Run the jlumbroso/free-disk-space action in the beginning of the publish-artifacts job Signed-off-by: Alper Rifat Ulucinar --- .github/workflows/provider-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/provider-ci.yml b/.github/workflows/provider-ci.yml index 891ebf2..960905d 100644 --- a/.github/workflows/provider-ci.yml +++ b/.github/workflows/provider-ci.yml @@ -293,6 +293,16 @@ jobs: if: needs.detect-noop.outputs.noop != 'true' steps: + - name: Cleanup Disk + uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1 + with: + android: true + dotnet: true + haskell: true + tool-cache: true + large-packages: false + swap-storage: false + - name: Setup QEMU uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2 with: