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/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
target: aarch64-unknown-linux-gnu
runs-on: ${{ matrix.sys.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-binary
with:
target: ${{ matrix.sys.target }}
Expand All @@ -59,7 +59,7 @@ jobs:
target: x86_64-apple-darwin
runs-on: ${{ matrix.sys.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-binary
with:
target: ${{ matrix.sys.target }}
Expand All @@ -82,7 +82,7 @@ jobs:
ext: .exe
runs-on: ${{ matrix.sys.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-binary
with:
target: ${{ matrix.sys.target }}
Expand All @@ -94,7 +94,7 @@ jobs:
needs: [build, build-macos, build-windows]
runs-on: windows-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Setup vars
run: |
Expand All @@ -106,7 +106,7 @@ jobs:
echo "ARTIFACT_NAME=stellar-cli-${version}-x86_64-pc-windows-msvc.tar.gz" >> $GITHUB_ENV

- name: Download Artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: ${{ env.ARTIFACT_NAME }}
- name: Uncompress Artifact
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bindings-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
- uses: stellar/quickstart@main
with:
tag: testing
- uses: actions/setup-node@v5
- uses: actions/setup-node@v6
with:
node-version: "20.x"
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: stellar/actions/rust-cache@main
- run: rustup update
- name: install optional dependencies (Linux only)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ledger-emulator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
CI_TESTS: true
TEST_THREADS: ${{ contains(matrix.sys, 'macos') && '--test-threads=1' || '' }} # macOS has limited resources, so we run tests (that rely on `testcontainers`) with 1 thread
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: stellar/actions/rust-cache@main

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rpc-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- uses: stellar/quickstart@main
with:
tag: future
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: stellar/actions/rust-cache@main
- run: rustup update
- run:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ jobs:
check: [advisories, bans, licenses, sources]
continue-on-error: ${{ matrix.check == 'advisories' }}
steps:
- uses: actions/checkout@v5
- uses: EmbarkStudios/cargo-deny-action@f2ba7abc2abebaf185c833c3961145a3c275caad
- uses: actions/checkout@v6
- uses: EmbarkStudios/cargo-deny-action@76cd80eb775d7bbbd2d80292136d74d39e1b4918
with:
command: check ${{ matrix.check }}

check:
runs-on: ubuntu-latest-8-cores
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: stellar/actions/rust-cache@main
- run: sudo apt update && sudo apt install -y libudev-dev libdbus-1-dev
- run: rustup update
Expand All @@ -79,7 +79,7 @@ jobs:
target: aarch64-unknown-linux-gnu
runs-on: ${{ matrix.sys.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-and-test
with:
target: ${{ matrix.sys.target }}
Expand All @@ -98,7 +98,7 @@ jobs:
target: aarch64-apple-darwin
runs-on: ${{ matrix.sys.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-and-test
with:
target: ${{ matrix.sys.target }}
Expand All @@ -115,7 +115,7 @@ jobs:
target: x86_64-pc-windows-msvc
runs-on: ${{ matrix.sys.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/build-and-test
with:
target: ${{ matrix.sys.target }}
Expand Down