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 26eb43b commit b76fa15
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ jobs:

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

- name: Run git diff check
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ jobs:

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

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/msvc-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ jobs:

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

- name: Configure CMake
run: cmake -S src -B ${{ env.build_dir }} -DCMAKE_BUILD_TYPE=${{ env.configuration }}
Expand Down

0 comments on commit b76fa15

Please sign in to comment.