Skip to content

Commit 169a377

Browse files
authored
Don't show progress for checkout actions
1 parent 3c83cf8 commit 169a377

File tree

4 files changed

+7
-0
lines changed

4 files changed

+7
-0
lines changed

.github/workflows/build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
uses: actions/checkout@v4
1919
with:
2020
submodules: true
21+
show-progress: false
2122
- name: Install pre-commit
2223
run: pip install pre-commit
2324
- name: Run pre-commit

build/action.yml

+2
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,11 @@ runs:
4646
uses: actions/checkout@v4
4747
with:
4848
submodules: true
49+
show-progress: false
4950
- name: Checkout tools repo
5051
uses: actions/checkout@v4
5152
with:
53+
show-progress: false
5254
repository: adafruit/actions-ci-circuitpython-libs
5355
path: actions-ci
5456
- name: Install dependencies

release-gh/action.yml

+2
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,11 @@ runs:
5252
uses: actions/checkout@v4
5353
with:
5454
submodules: true
55+
show-progress: false
5556
- name: Checkout tools repo
5657
uses: actions/checkout@v4
5758
with:
59+
show-progress: false
5860
repository: adafruit/actions-ci-circuitpython-libs
5961
path: actions-ci
6062
- name: Install deps

release-pypi/action.yml

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ runs:
1919
using: "composite"
2020
steps:
2121
- uses: actions/checkout@v4
22+
with:
23+
show-progress: false
2224
- name: Check For pyproject.toml
2325
id: need-pypi
2426
shell: bash

0 commit comments

Comments
 (0)