diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml index bee5c75c7..404057531 100644 --- a/.github/workflows/binaries.yml +++ b/.github/workflows/binaries.yml @@ -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 }} @@ -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 }} @@ -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 }} @@ -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: | @@ -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 diff --git a/.github/workflows/bindings-ts.yml b/.github/workflows/bindings-ts.yml index 0327c6824..f53a74e81 100644 --- a/.github/workflows/bindings-ts.yml +++ b/.github/workflows/bindings-ts.yml @@ -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) diff --git a/.github/workflows/ledger-emulator.yml b/.github/workflows/ledger-emulator.yml index 2ef100c3a..37dfb3221 100644 --- a/.github/workflows/ledger-emulator.yml +++ b/.github/workflows/ledger-emulator.yml @@ -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 diff --git a/.github/workflows/rpc-tests.yml b/.github/workflows/rpc-tests.yml index a89459116..76b5e450e 100644 --- a/.github/workflows/rpc-tests.yml +++ b/.github/workflows/rpc-tests.yml @@ -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: diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8684c1db5..2ab5fef3b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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 @@ -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 }} @@ -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 }} @@ -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 }}