mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-16 22:10:26 +00:00
Suppress progress output from actions/checkout
This commit is contained in:
parent
10530e5a26
commit
9dadf285a1
3 changed files with 12 additions and 4 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
|
@ -72,6 +72,8 @@ jobs:
|
|||
|
||||
- name: Git clone
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
show-progress: false
|
||||
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v5
|
||||
|
|
@ -114,6 +116,8 @@ jobs:
|
|||
steps:
|
||||
- name: Git clone
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
show-progress: false
|
||||
|
||||
- name: Install Ubuntu packages
|
||||
run: |
|
||||
|
|
@ -162,6 +166,8 @@ jobs:
|
|||
steps:
|
||||
- name: Git clone
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
show-progress: false
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
|
|
|
|||
5
.github/workflows/publish-pages.yml
vendored
5
.github/workflows/publish-pages.yml
vendored
|
|
@ -15,10 +15,11 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
# Needed for hatch-vcs to extract LinkChecker version from tag
|
||||
# https://github.com/actions/checkout/issues/249
|
||||
with:
|
||||
# Needed for hatch-vcs to extract LinkChecker version from tag
|
||||
# https://github.com/actions/checkout/issues/249
|
||||
fetch-depth: 0
|
||||
show-progress: false
|
||||
|
||||
- name: Install Ubuntu packages
|
||||
run: sudo apt install graphviz
|
||||
|
|
|
|||
5
.github/workflows/release-files.yml
vendored
5
.github/workflows/release-files.yml
vendored
|
|
@ -13,10 +13,11 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
# Needed for hatch-vcs to extract LinkChecker version from tag
|
||||
# https://github.com/actions/checkout/issues/249
|
||||
with:
|
||||
# Needed for hatch-vcs to extract LinkChecker version from tag
|
||||
# https://github.com/actions/checkout/issues/249
|
||||
fetch-depth: 0
|
||||
show-progress: false
|
||||
|
||||
- name: Install Ubuntu packages
|
||||
run: sudo apt install git
|
||||
|
|
|
|||
Loading…
Reference in a new issue