From 01b353f04bf20cd2b7a828934e7b6ec21ed65797 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 21 Jun 2026 23:04:27 +0000 Subject: [PATCH 1/3] ci: bump rust-ci-reusable pin cc5a372a -> 09e7023d (standards HEAD) Align the Rust CI reusable pin with the other standards pins refreshed in #41. Aims to clear the Rust CI failure (0 jobs instantiated at the old pin). Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01Y2MWTAqX2x7goVJzjFB4j5 --- .github/workflows/rust-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml index 1b1b792..02f624b 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -14,4 +14,4 @@ permissions: jobs: rust-ci: - uses: hyperpolymath/standards/.github/workflows/rust-ci-reusable.yml@cc5a372af1af1b202c17f1b21efd954e6c038bef + uses: hyperpolymath/standards/.github/workflows/rust-ci-reusable.yml@09e7023d24682621bea4e11965a1ef5e87d86c3b From 9efe604b0b0cf7491d5f9bedbf5e1907ab885373 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 21 Jun 2026 23:07:47 +0000 Subject: [PATCH 2/3] ci: pass required toolchain input to rust-ci-reusable The HEAD rust-ci-reusable requires a 'toolchain' input (forwarded to dtolnay/rust-toolchain); the bare wrapper didn't pass it. Add toolchain: stable. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01Y2MWTAqX2x7goVJzjFB4j5 --- .github/workflows/rust-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml index 02f624b..1d94365 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -15,3 +15,5 @@ permissions: jobs: rust-ci: uses: hyperpolymath/standards/.github/workflows/rust-ci-reusable.yml@09e7023d24682621bea4e11965a1ef5e87d86c3b + with: + toolchain: stable From 1ce640076dd7d5c0674990bed4b2a5c19ab537ab Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 21 Jun 2026 23:11:20 +0000 Subject: [PATCH 3/3] ci: revert toolchain input guess (not a declared reusable input) Passing toolchain: stable caused a startup_failure (the HEAD rust-ci-reusable does not declare a 'toolchain' input). Revert to the bare pin-aligned wrapper; Rust CI remains blocked on an upstream standards reusable issue. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01Y2MWTAqX2x7goVJzjFB4j5 --- .github/workflows/rust-ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml index 1d94365..02f624b 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -15,5 +15,3 @@ permissions: jobs: rust-ci: uses: hyperpolymath/standards/.github/workflows/rust-ci-reusable.yml@09e7023d24682621bea4e11965a1ef5e87d86c3b - with: - toolchain: stable