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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: changelog & version check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
name: fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -76,7 +76,7 @@ jobs:
name: clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -101,7 +101,7 @@ jobs:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -125,7 +125,7 @@ jobs:
name: benchmark-budgets
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
# forks / untrusted runs, so the network step is skipped there.
STELLAR_TESTNET_SECRET: ${{ secrets.STELLAR_TESTNET_SECRET }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Setup Rust (stable + wasm)
uses: dtolnay/rust-toolchain@stable
with:
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
# baseline by up to (1 + tolerance) before the build fails.
WASM_SIZE_TOLERANCE: 0.10
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
Expand Down Expand Up @@ -342,7 +342,7 @@ jobs:
group: vector-parity-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Verify local fixture is in sync with its source of truth
# Regenerates src/vectors.rs from merkle-vectors.json and fails if it
Expand Down
Loading