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