Skip to content

Commit

Permalink
[ci][clean] Update actions/checkout from v3 to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
lpascal-ledger committed Feb 7, 2024
1 parent 97a1eb9 commit 124f1cf
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
image: docker://ghcr.io/ledgerhq/speculos-builder:latest
steps:
- name: Clone
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build with code coverage instrumentation
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:

steps:
- name: Clone
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:

steps:
- name: Clone
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
needs: [build]
steps:
- name: Clone
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build and publish to GitHub Packages
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/fast-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Python dependency
Expand All @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Lint C code
Expand All @@ -42,7 +42,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v3
uses: actions/checkout@v4
- run: pip install mypy types-requests types-setuptools PyQt5-stubs
- name: Mypy type checking
run: mypy speculos
Expand All @@ -52,7 +52,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v3
uses: actions/checkout@v4
- run: pip install bandit
- name: Bandit security checking
run: bandit -r speculos -ll || echo 0
Expand All @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check misspellings
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/reusable_ragger_tests_latest_speculos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
fail-fast: false
steps:
- name: Clone
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.speculos_app_branch_name }}
submodules: recursive
Expand Down Expand Up @@ -71,15 +71,15 @@ jobs:
- device: stax
steps:
- name: Clone
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ledgerHQ/speculos
ref: ${{ inputs.speculos_app_branch_name }}
submodules: recursive
fetch-depth: 0

- name: Clone
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ inputs.app_repository }}
ref: ${{ inputs.app_branch_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/speculos-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

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

- name: Build and push speculos-builder to GitHub Packages
uses: docker/build-push-action@v1
Expand Down

0 comments on commit 124f1cf

Please sign in to comment.