Skip to content

Commit

Permalink
CI: Bump checkout action version
Browse files Browse the repository at this point in the history
(cherry picked from commit 0045635)
  • Loading branch information
Xavier Chapron authored and lpascal-ledger committed May 15, 2024
1 parent 13047da commit c872c63
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_all_apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install tomlq
run: |
Expand Down Expand Up @@ -105,14 +105,14 @@ jobs:

steps:
- name: Clone App
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: LedgerHQ/${{ matrix.repo_info.repo_name }}
ref: ${{ matrix.repo_info.default_branch }}
submodules: true

- name: Clone SDK
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: sdk
ref: ${{ inputs.sdk_branch }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check_clang_static_analyzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:

steps:
- name: Clone Boilerplate
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: LedgerHQ/app-boilerplate
ref: master

- name: Clone SDK
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: sdk

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

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

- name: Build unit tests
run: |
Expand Down

0 comments on commit c872c63

Please sign in to comment.