Skip to content

Commit

Permalink
Reduce log output during Actions workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
kpfleming committed Oct 23, 2023
1 parent d88d593 commit c2c8854
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
1 change: 1 addition & 0 deletions .github/workflows/pypi-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
show-progress: false

- uses: hynek/build-and-inspect-python-package@v1

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c2c8854

Please sign in to comment.