From aaf83f42a361a5e7e1f5842ebae227970bcd39c7 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Fri, 29 Sep 2023 12:48:39 +0200 Subject: [PATCH] action: use latest version for the cleanup (#3337) * action: use https://github.com/jlumbroso/free-disk-space/releases/tag/v1.3.0 * continue on error * action: use free-disk-space action in non-app-server-integration-tests --- .github/workflows/main.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 04410dc9bf..9aa49d1c72 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -176,6 +176,18 @@ jobs: with: name: build path: ${{ github.workspace }} + # As long as there are some space issues with the CI runners. + - name: Free Disk Space + continue-on-error: true + uses: jlumbroso/free-disk-space@f68fdb76e2ea636224182cfb7377ff9a1708f9b8 + with: + android: true + dotnet: true + haskell: true + large-packages: true + docker-images: true + swap-storage: true + tool-cache: false - uses: ./.github/workflows/maven-goal with: command: ./mvnw -q -P ci-non-application-server-integration-tests verify @@ -205,7 +217,8 @@ jobs: path: ${{ github.workspace }} # As long as there are some space issues with the CI runners. - name: Free Disk Space - uses: jlumbroso/free-disk-space@0add001504c51b93b35ac8e81d252bdd47e4ef07 + continue-on-error: true + uses: jlumbroso/free-disk-space@f68fdb76e2ea636224182cfb7377ff9a1708f9b8 with: android: true dotnet: true