Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
ci_image_version: ${{ steps.set-ci-image-version.outputs.ci_image_version }}
steps:
- name: Clone the repo
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Read CI Image Version
id: set-ci-image-version
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Clone the repo
with:
submodules: recursive
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Run CI script
# The script also runs golang-ci but it's ok: doesn't take too long and may be useful
# to keep its linter errors in this log, too.
Expand All @@ -51,7 +51,7 @@ jobs:
project: [Chromium, WebKit]
name: Playwright (${{ matrix.project }})
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Download simulator v9.24.0 from simulators.json
run: |
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
image: shiftcrypto/bitbox-wallet-app:${{ needs.setup-env.outputs.ci_image_version }}
steps:
- name: Clone the repo
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Enable caching
uses: actions/cache@v5
with:
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
artifact-url-rpm: ${{ steps.upload-rpm.outputs.artifact-url }}
steps:
- name: Clone the repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: recursive
- name: Build Qt-Linux
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
artifact-url: ${{ steps.upload.outputs.artifact-url }}
steps:
- name: Clone the repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: recursive
- name: Install Go
Expand Down Expand Up @@ -243,7 +243,7 @@ jobs:
GO_SRC_DIR: src/github.com/BitBoxSwiss/bitbox-wallet-app
steps:
- name: Clone the repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: recursive
- name: Install Go
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
MINGW_BIN: /C/mingw64/bin
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: recursive
- name: Install Node.js
Expand Down Expand Up @@ -324,7 +324,7 @@ jobs:
if: ${{ !cancelled() && github.event_name == 'push' }}
steps:
- name: Clone the repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Create vars
Expand Down Expand Up @@ -371,7 +371,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Clone the repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: recursive
- name: Install Go
Expand Down
Loading