From 1e3b50f679b6ff5c692fcd3db354c7e51d0bc369 Mon Sep 17 00:00:00 2001 From: wind57 Date: Mon, 30 Jun 2025 18:31:24 +0300 Subject: [PATCH 1/2] minor time improvement Signed-off-by: wind57 --- .github/workflows/composites/clean-space/action.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/composites/clean-space/action.yaml b/.github/workflows/composites/clean-space/action.yaml index f115de3a20..c1a75b2db5 100644 --- a/.github/workflows/composites/clean-space/action.yaml +++ b/.github/workflows/composites/clean-space/action.yaml @@ -4,6 +4,11 @@ runs: using: "composite" steps: + - name: Disable man-db to make package install and removal faster + run: | + echo 'set man-db/auto-update false' | sudo debconf-communicate >/dev/null + sudo dpkg-reconfigure man-db + - name: Free Disk Space uses: jlumbroso/free-disk-space@main with: From 816ae558847be6b54d5f8f2faa3367f614d5336a Mon Sep 17 00:00:00 2001 From: wind57 Date: Mon, 30 Jun 2025 18:42:03 +0300 Subject: [PATCH 2/2] add shell Signed-off-by: wind57 --- .github/workflows/composites/clean-space/action.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/composites/clean-space/action.yaml b/.github/workflows/composites/clean-space/action.yaml index c1a75b2db5..3e6f5aed22 100644 --- a/.github/workflows/composites/clean-space/action.yaml +++ b/.github/workflows/composites/clean-space/action.yaml @@ -5,6 +5,7 @@ runs: steps: - name: Disable man-db to make package install and removal faster + shell: bash run: | echo 'set man-db/auto-update false' | sudo debconf-communicate >/dev/null sudo dpkg-reconfigure man-db