From 6ea967539732e75ff9328d97f617aebdcdbce64a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 5 Apr 2026 02:10:29 +0000 Subject: [PATCH] Bump the all-actions group across 1 directory with 6 updates Bumps the all-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `6` | | [stellar/binaries](https://github.com/stellar/binaries) | `45` | `53` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `8` | | [denoland/setup-deno](https://github.com/denoland/setup-deno) | `2.0.2` | `2.0.3` | | [stellar/stellar-cli](https://github.com/stellar/stellar-cli) | `23.1.4` | `25.1.0` | Updates `actions/checkout` from 3 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v6) Updates `stellar/binaries` from 45 to 53 - [Release notes](https://github.com/stellar/binaries/releases) - [Commits](https://github.com/stellar/binaries/compare/v45...v53) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `actions/download-artifact` from 5 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v8) Updates `denoland/setup-deno` from 2.0.2 to 2.0.3 - [Release notes](https://github.com/denoland/setup-deno/releases) - [Commits](https://github.com/denoland/setup-deno/compare/909cc5acb0fdd60627fb858598759246509fa755...e95548e56dfa95d4e1a28d6f422fafe75c4c26fb) Updates `stellar/stellar-cli` from 23.1.4 to 25.1.0 - [Release notes](https://github.com/stellar/stellar-cli/releases) - [Commits](https://github.com/stellar/stellar-cli/compare/v23.1.4...v25.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: stellar/binaries dependency-version: '53' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: denoland/setup-deno dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-actions - dependency-name: stellar/stellar-cli dependency-version: 25.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/rust.yml | 38 +++++++++---------- ...st-with-openzeppelin-stellar-contracts.yml | 8 ++-- .../workflows/test-with-soroban-examples.yml | 12 +++--- 3 files changed, 29 insertions(+), 29 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e87acc5c7..416ab8738 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -70,7 +70,7 @@ jobs: fmt: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - run: rustup update - run: cargo fmt --all --check @@ -84,7 +84,7 @@ jobs: # Prevent sudden announcement of a new advisory from failing ci: continue-on-error: ${{ matrix.checks == 'advisories' }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - uses: EmbarkStudios/cargo-deny-action@3fd3802e88374d3fe9159b834c7714ec57d6c979 with: command: check ${{ matrix.checks }} @@ -92,13 +92,13 @@ jobs: check-git-rev-deps: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - uses: stellar/actions/rust-check-git-rev-deps@main semver-checks: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - run: rustup update stable - name: Determine Rust n-2 version since cargo-semver-checks is rarely available for the latest version id: rust-version @@ -118,7 +118,7 @@ jobs: run: | rustc --version cargo --version - - uses: stellar/binaries@v51 + - uses: stellar/binaries@v55 with: name: cargo-semver-checks version: 0.45.0 @@ -137,7 +137,7 @@ jobs: sys: ${{ fromJSON(needs.setup.outputs.sys) }} runs-on: ${{ matrix.sys.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: Install minimum supported rust version if: matrix.rust == 'msrv' run: | @@ -163,7 +163,7 @@ jobs: if: matrix.rust == 'msrv' run: echo RUSTFLAGS='-Dwarnings' >> $GITHUB_ENV - run: echo CARGO_BUILD_TARGET='${{ matrix.sys.target }}' >> $GITHUB_ENV - - uses: stellar/binaries@v45 + - uses: stellar/binaries@v55 with: name: cargo-hack version: 0.5.28 @@ -171,7 +171,7 @@ jobs: - run: make build-libs - run: make build-test-wasms TEST_CRATES_RUSTUP_TOOLCHAIN=$RUSTUP_TOOLCHAIN - name: Upload test wasms - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: test-wasms-${{ matrix.rust }}-${{ matrix.sys.target }} path: target/wasm32v1-none/release/test_*.wasm @@ -186,7 +186,7 @@ jobs: sys: ${{ fromJSON(needs.setup.outputs.sys) }} runs-on: ${{ matrix.sys.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: Install minimum supported rust version if: matrix.rust == 'msrv' run: | @@ -212,12 +212,12 @@ jobs: if: matrix.rust == 'msrv' run: echo RUSTFLAGS='-Dwarnings' >> $GITHUB_ENV - run: echo CARGO_BUILD_TARGET='${{ matrix.sys.target }}' >> $GITHUB_ENV - - uses: stellar/binaries@v45 + - uses: stellar/binaries@v55 with: name: cargo-hack version: 0.5.28 - name: Restore test wasms for tests from one of the msrv builds - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v8 with: name: test-wasms-msrv-x86_64-unknown-linux-gnu path: target/wasm32v1-none/release/ @@ -231,10 +231,10 @@ jobs: build-fuzz: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - uses: stellar/actions/rust-cache@main - run: rustup install nightly - - uses: stellar/binaries@v45 + - uses: stellar/binaries@v55 with: name: cargo-fuzz version: 0.13.1 @@ -245,7 +245,7 @@ jobs: docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - uses: stellar/actions/rust-cache@main - run: rustup install nightly - run: make doc @@ -255,7 +255,7 @@ jobs: readme: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - uses: stellar/actions/rust-cache@main - run: rustup install nightly - run: make readme @@ -264,7 +264,7 @@ jobs: migration-docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - uses: stellar/actions/rust-cache@main - run: rustup update - run: | @@ -275,7 +275,7 @@ jobs: expand-test-wasms: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: stellar/actions/rust-cache@main - name: Install minimum supported rust version run: | @@ -283,11 +283,11 @@ jobs: rustup install $msrv rustup target add --toolchain $msrv wasm32v1-none rustup component add rustfmt - - uses: stellar/binaries@v45 + - uses: stellar/binaries@v55 with: name: cargo-hack version: 0.5.28 - - uses: stellar/binaries@v45 + - uses: stellar/binaries@v55 with: name: cargo-expand version: 1.0.116 diff --git a/.github/workflows/test-with-openzeppelin-stellar-contracts.yml b/.github/workflows/test-with-openzeppelin-stellar-contracts.yml index a2f132c5c..16da1cd71 100644 --- a/.github/workflows/test-with-openzeppelin-stellar-contracts.yml +++ b/.github/workflows/test-with-openzeppelin-stellar-contracts.yml @@ -18,7 +18,7 @@ jobs: collect-crates: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: repository: OpenZeppelin/stellar-contracts ref: main @@ -43,12 +43,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout rs-soroban-sdk - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: rs-soroban-sdk - name: Checkout OpenZeppelin stellar-contracts - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: OpenZeppelin/stellar-contracts ref: main @@ -103,7 +103,7 @@ jobs: - name: Upload WASM artifacts if: steps.check-if-contract.outputs.is-a-contract == 'true' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ steps.artifact-name.outputs.name }} path: 'stellar-contracts/target/wasm32v1-none/release/*.wasm' diff --git a/.github/workflows/test-with-soroban-examples.yml b/.github/workflows/test-with-soroban-examples.yml index 6c05d3170..9e22a9376 100644 --- a/.github/workflows/test-with-soroban-examples.yml +++ b/.github/workflows/test-with-soroban-examples.yml @@ -18,7 +18,7 @@ jobs: collect-examples: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: repository: stellar/soroban-examples ref: main @@ -58,12 +58,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout rs-soroban-sdk - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: rs-soroban-sdk - name: Checkout soroban-examples - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: stellar/soroban-examples ref: main @@ -74,11 +74,11 @@ jobs: rustup update rustup target add wasm32v1-none - - uses: denoland/setup-deno@909cc5acb0fdd60627fb858598759246509fa755 # v2.0.2 + - uses: denoland/setup-deno@667a34cdef165d8d2b2e98dde39547c9daac7282 # v2.0.4 with: deno-version: v2.x - - uses: stellar/stellar-cli@v23.1.4 + - uses: stellar/stellar-cli@v25.2.0 - uses: stellar/actions/rust-cache@main @@ -128,7 +128,7 @@ jobs: run: echo "name=wasm-$(echo ${{ matrix.working-directory }} | sed 's/\//-/g')${{ matrix.experimental_spec_shaking_v2 && '-spec-shaking-v2' || '' }}" | tee -a $GITHUB_OUTPUT - name: Upload WASM artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ steps.artifact-name.outputs.name }} path: 'soroban-examples/${{ matrix.working-directory }}/**/*.wasm'