Skip to content

Commit

Permalink
🔀 (ci): Merge branch 'ladislas/bugfix/codecov-fetch-depth' into develop
Browse files Browse the repository at this point in the history
* ladislas/bugfix/codecov-fetch-depth:
  👷 (codecov): Use actions/checkout@v2 with fetch-depth: 2 to fix codecov issue
  📌 (ci): Do not specify minor and patch versions for actions/checkout@v2
  • Loading branch information
ladislas committed Mar 15, 2021
2 parents 6abf566 + 74da9cc commit 5e5cfa0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
custom_target: ["LEKA_V1_1_DEV", "LEKA_V1_2_DEV"]
steps:
- name: Checkout
uses: actions/checkout@v2.0.0
uses: actions/checkout@v2
with:
fetch-depth: 2

- name: Create cache variables
id: create_cache_variables
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/ci-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ jobs:
runs-on: [self-hosted, check]
steps:
- name: Checkout
uses: actions/checkout@v2.0.0
uses: actions/checkout@v2
with:
fetch-depth: 2

- name: Run clang-format
run: |
python3 tools/run-clang-format.py -r --extension=h,c,cpp --color=always --style=file ./src ./drivers ./libs ./spikes ./tests
4 changes: 3 additions & 1 deletion .github/workflows/ci-unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
runs-on: [self-hosted, build]
steps:
- name: Checkout
uses: actions/checkout@v2.0.0
uses: actions/checkout@v2
with:
fetch-depth: 2

- name: Create cache variables
id: create_cache_variables
Expand Down

0 comments on commit 5e5cfa0

Please sign in to comment.