From c2c8854cd5ea72240055af2724a954e78053fe14 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Mon, 23 Oct 2023 07:21:43 -0400 Subject: [PATCH] Reduce log output during Actions workflows. --- .github/workflows/ci.yml | 2 ++ .github/workflows/codeql-analysis.yml | 2 ++ .github/workflows/lint.yml | 4 ++++ .github/workflows/pypi-package.yml | 1 + .github/workflows/test.yml | 2 ++ 5 files changed, 11 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29aa7d5..92f8374 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,8 @@ jobs: need_ci: ${{ (steps.preflight.outputs.need_ci == 'true') || (steps.preflight.outputs.need_image == 'true') }} steps: - uses: actions/checkout@v4 + with: + show-progress: false - id: get_versions run: cat workflow-support/versions.json >> $GITHUB_OUTPUT - id: details diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 6a54e20..82119dc 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -28,6 +28,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + show-progress: false - name: Initialize CodeQL uses: github/codeql-action/init@v2 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index eadc265..277cd4a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,6 +15,8 @@ jobs: need_lint: ${{ steps.preflight.outputs.need_lint == 'true' }} steps: - uses: actions/checkout@v4 + with: + show-progress: false - id: details uses: kpfleming/composite-actions/image-details@v2 with: @@ -32,4 +34,6 @@ jobs: image: ${{ needs.preflight.outputs.image_base }}:main steps: - uses: actions/checkout@v4 + with: + show-progress: false - uses: kpfleming/composite-actions/lint-hatch@v2 diff --git a/.github/workflows/pypi-package.yml b/.github/workflows/pypi-package.yml index aba7b67..ca20c5b 100644 --- a/.github/workflows/pypi-package.yml +++ b/.github/workflows/pypi-package.yml @@ -24,6 +24,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 + show-progress: false - uses: hynek/build-and-inspect-python-package@v1 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 148eb01..681c12b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,6 +22,8 @@ jobs: image: ${{ inputs.image }} steps: - uses: actions/checkout@v4 + with: + show-progress: false - name: build wheel run: hatch build -t wheel shell: bash