Skip to content

Commit

Permalink
🔀 Merge branch 'ladislas/feature/ci-upgrade-checkout' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
ladislas committed Feb 1, 2024
2 parents 857a160 + 2df2d89 commit b96778e
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ runs:
#

- name: Checkout mbed-os
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: leka/mbed-os
ref: ${{ env.HEAD_MBED_VERSION }}
path: extern/mbed-os

- name: Checkout mcuboot
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: mcu-tools/mcuboot
ref: ${{ env.HEAD_MCUBOOT_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-build_targets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
#
# Mark: - Setup
#
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-code_analysis-clang_tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
#
# Mark: - Setup
#
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-code_analysis-impact_of_changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
# Mark: - Setup
#

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
#
# Mark: - Setup
#
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
#
# Mark: - Setup
#
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-code_analysis-sanitizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
optimisation_level: ["-Og", "-Os"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set CC & CXX env
id: set_cc_cxx_env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-code_analysis-sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# Mark: - Setup
#

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-code_analysis-toolchain_upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# Mark: - Setup
#

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
#
# Mark: - Setup
#
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

Expand Down Expand Up @@ -218,7 +218,7 @@ jobs:
#
# Mark: - Setup
#
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
#
# Mark: - Setup
#
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-functional_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set CC & CXX env
id: set_cc_cxx_env
Expand Down

0 comments on commit b96778e

Please sign in to comment.