From ed56f8f66f2f9e92469316d30186445716c59b06 Mon Sep 17 00:00:00 2001 From: Yee Cheng Chin Date: Mon, 4 Sep 2023 16:51:00 -0700 Subject: [PATCH] GitHub CI don't show progress when checking out repo Use the new "show-progress" flag in checkout@v4 to suppress Git checkout progress to trim down on log size. --- .github/workflows/ci-macvim.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-macvim.yaml b/.github/workflows/ci-macvim.yaml index a5051b7aeb..5f19c4d97e 100644 --- a/.github/workflows/ci-macvim.yaml +++ b/.github/workflows/ci-macvim.yaml @@ -71,6 +71,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + show-progress: false - name: Set up legacy build if: matrix.legacy