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 5a54677 commit a9f4735
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
versions: ${{ steps.get_versions.outputs.versions }}
need_ci: ${{ (steps.preflight.outputs.need_ci == 'true') || (steps.preflight.outputs.need_image == 'true') }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
show-progress: false
- id: get_versions
run: cat workflow-support/versions.json >> $GITHUB_OUTPUT
- id: details
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
show-progress: false

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
image_base: ${{ steps.details.outputs.image_base }}
need_lint: ${{ steps.preflight.outputs.need_lint == 'true' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
show-progress: false
- id: details
uses: kpfleming/composite-actions/image-details@v2
with:
Expand All @@ -31,5 +33,7 @@ jobs:
container:
image: ${{ needs.preflight.outputs.image_base }}:main
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
show-progress: false
- uses: kpfleming/composite-actions/lint-hatch@v2
3 changes: 2 additions & 1 deletion .github/workflows/pypi-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
show-progress: false

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

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
container:
image: ${{ inputs.image }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
show-progress: false
- name: build wheel
run: hatch build -t wheel
shell: bash
Expand Down

0 comments on commit a9f4735

Please sign in to comment.