Skip to content

Commit

Permalink
Bump actions/checkout from v3 to v4, and use the new "show-progress" …
Browse files Browse the repository at this point in the history
…to disable the useless progress report during fetch.
  • Loading branch information
blu3mania committed Sep 4, 2023
1 parent cd75a67 commit 2e49ff7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,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
3 changes: 2 additions & 1 deletion .github/workflows/git-diff-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ jobs:

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

- name: Run git diff check
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-linux-and-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:

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

- name: Install required node.js version
uses: actions/setup-node@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:

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

- name: Install required node.js version
uses: actions/setup-node@v3
Expand Down

0 comments on commit 2e49ff7

Please sign in to comment.