Skip to content

Commit 21f6295

Browse files
authored
Disable show-progress for actions/checkout (#351)
1 parent 248e5bc commit 21f6295

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
steps:
1616
- name: Checkout source
1717
uses: actions/checkout@v4
18+
with:
19+
show-progress: false
1820

1921
- name: Setup .NET SDK
2022
uses: actions/setup-dotnet@v3

.github/workflows/publish-preview.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
steps:
2323
- name: Checkout source
2424
uses: actions/checkout@v4
25+
with:
26+
show-progress: false
2527
- name: Setup .NET SDK
2628
uses: actions/setup-dotnet@v3
2729
with:

.github/workflows/publish-release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ jobs:
1313
publish:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- name: Checkout source
17+
uses: actions/checkout@v4
18+
with:
19+
show-progress: false
1720
- name: Check github.ref starts with 'refs/tags/'
1821
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
1922
run: |

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
steps:
3333
- name: Checkout source
3434
uses: actions/checkout@v4
35+
with:
36+
show-progress: false
3537
- name: Setup .NET SDKs
3638
uses: actions/setup-dotnet@v3
3739
with:

0 commit comments

Comments
 (0)