Skip to content
Open
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
name: Test and lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

# The sibling registry checkout, so the address vectors and the real-registry parse test
# run for real rather than skipping. A skip here would hide a regression affecting every
# chain the wallet offers.
- name: Check out zunia-chain-registry
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: Zunia-Lab/zunia-chain-registry
path: .registry
Expand Down Expand Up @@ -79,8 +79,8 @@ jobs:
name: Vectors are current
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/checkout@v7
with:
repository: Zunia-Lab/zunia-chain-registry
path: .registry
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
name: Fuzz targets build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Install Rust
run: rustup show active-toolchain
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/fuzz-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
- address_parser
- keyring_envelope
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Check out zunia-chain-registry
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: Zunia-Lab/zunia-chain-registry
path: .registry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gitleaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
gitleaks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: gitleaks/gitleaks-action@v2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Build and publish @zunialab/core
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
name: Native Android libs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Install Rust
run: rustup show active-toolchain
- uses: Swatinem/rust-cache@v2
Expand All @@ -101,7 +101,7 @@ jobs:
name: Native iOS xcframework
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Install Rust
run: rustup show active-toolchain
- uses: Swatinem/rust-cache@v2
Expand All @@ -121,7 +121,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/download-artifact@v4
with:
path: artifacts
Expand Down
Loading