From 97fbc50d2609870a1458732e72aa03579bed6095 Mon Sep 17 00:00:00 2001 From: Mark Sagi-Kazar Date: Wed, 8 May 2024 14:26:49 +0200 Subject: [PATCH] ci: fix missing action Signed-off-by: Mark Sagi-Kazar --- .github/workflows/ci.yaml | 16 ++++++++++++++-- .github/workflows/release.yaml | 16 ++++++++++++++-- 2 files changed, 28 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9fc3e4eb3..a03959144 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -204,8 +204,20 @@ jobs: runs-on: ${{ github.actor == 'dependabot[bot]' && 'ubuntu-latest' || 'ubuntu-latest-large' }} steps: - - name: Free disk space - uses: ./.github/actions/free-disk-space + - name: Free Disk Space + uses: jlumbroso/free-disk-space@v1.3.1 + with: + # Runs quick, run rm in background + tool-cache: true + + # These run slower as use apt to uninstall packages + # Turned on by default, so we disable them + android: false + dotnet: false + haskell: false + large-packages: false + docker-images: false + swap-storage: false - name: Run pipeline uses: dagger/dagger-for-github@eba69b4dddb54eddfdb51a88eb7fd86957137630 # v5.4.0 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 38ba05755..63f9e008f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -33,8 +33,20 @@ jobs: security-events: write steps: - - name: Free disk space - uses: ./.github/actions/free-disk-space + - name: Free Disk Space + uses: jlumbroso/free-disk-space@v1.3.1 + with: + # Runs quick, run rm in background + tool-cache: true + + # These run slower as use apt to uninstall packages + # Turned on by default, so we disable them + android: false + dotnet: false + haskell: false + large-packages: false + docker-images: false + swap-storage: false - name: Run pipeline uses: dagger/dagger-for-github@eba69b4dddb54eddfdb51a88eb7fd86957137630 # v5.4.0