From 4ca7d757829c2a3218273b62a9f22c643b223880 Mon Sep 17 00:00:00 2001 From: sunnyraindy Date: Mon, 10 Nov 2025 18:24:18 +0800 Subject: [PATCH 1/4] chore: fix typo in subxt/Cargo.toml (#2117) Signed-off-by: sunnyraindy --- subxt/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subxt/Cargo.toml b/subxt/Cargo.toml index 7caf8df4d0..08d7b55eb5 100644 --- a/subxt/Cargo.toml +++ b/subxt/Cargo.toml @@ -131,7 +131,7 @@ subxt-signer = { path = "../signer", features = ["unstable-eth"] } subxt-rpcs = { workspace = true, features = ["subxt", "mock-rpc-client"] } # Tracing subscriber is useful for light-client examples to ensure that # the `bootNodes` and chain spec are configured correctly. If all is fine, then -# the light-client wlll emit INFO logs with +# the light-client will emit INFO logs with # `GrandPa warp sync finished` and `Finalized block runtime ready.` tracing-subscriber = { workspace = true } # These deps are needed to test the reconnecting rpc client From 6298d9a87bf396c56e26ce87a430ab2ad64e35cc Mon Sep 17 00:00:00 2001 From: James Wilson Date: Mon, 10 Nov 2025 10:57:08 +0000 Subject: [PATCH 2/4] Try ficing Rustc to version polkadot-sdk CI uses (#2118) --- .github/workflows/build-nodes.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-nodes.yml b/.github/workflows/build-nodes.yml index 959ffb0991..2a42d3be18 100644 --- a/.github/workflows/build-nodes.yml +++ b/.github/workflows/build-nodes.yml @@ -20,11 +20,11 @@ jobs: - name: Install dependencies run: sudo apt-get update && sudo apt-get install -y protobuf-compiler curl gcc make clang cmake llvm-dev libclang-dev - - name: Install Rust stable toolchain + - name: Install Rust v1.88 toolchain uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: stable + toolchain: 1.88 components: rust-src target: wasm32-unknown-unknown From 0e1990b732ac7cf57ba125757b5d90eedc52670d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 11:06:33 +0000 Subject: [PATCH 3/4] build(deps): bump actions/upload-artifact from 4 to 5 (#2113) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build-nodes.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-nodes.yml b/.github/workflows/build-nodes.yml index 2a42d3be18..6254c49167 100644 --- a/.github/workflows/build-nodes.yml +++ b/.github/workflows/build-nodes.yml @@ -49,7 +49,7 @@ jobs: cargo strip - name: upload substrate binary - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: nightly-substrate-binary path: target/release/substrate-node @@ -62,7 +62,7 @@ jobs: tar -zcvf target/release/polkadot.tar.gz target/release/polkadot - name: upload polkadot binary - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: nightly-polkadot-binary path: | From 4157ce08a0ebdb04faa2a524704a1a2777a5f80f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 11:06:54 +0000 Subject: [PATCH 4/4] build(deps): bump actions/upload-artifact in /.github/workflows (#2114) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>