extension_ci: Update extension CLI SHA (#47875)

Finn Evers created

This PR bumps the version of the Zed extension CLI sha used in the
extension repositories to 7cfce605704d41ca247e3f84804bf323f6c6caaf

Release Notes:

- N/A

Change summary

.github/workflows/extension_bump.yml                 | 2 +-
.github/workflows/extension_tests.yml                | 2 +-
tooling/xtask/src/tasks/workflows/extension_tests.rs | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)

Detailed changes

.github/workflows/extension_bump.yml 🔗

@@ -5,7 +5,7 @@ env:
   CARGO_TERM_COLOR: always
   RUST_BACKTRACE: '1'
   CARGO_INCREMENTAL: '0'
-  ZED_EXTENSION_CLI_SHA: 7cfce605704d41ca247e3f84804bf323f6c6caaf
+  ZED_EXTENSION_CLI_SHA: 03d8e9aee95ea6117d75a48bcac2e19241f6e667
 on:
   workflow_call:
     inputs:

.github/workflows/extension_tests.yml 🔗

@@ -5,7 +5,7 @@ env:
   CARGO_TERM_COLOR: always
   RUST_BACKTRACE: '1'
   CARGO_INCREMENTAL: '0'
-  ZED_EXTENSION_CLI_SHA: 7cfce605704d41ca247e3f84804bf323f6c6caaf
+  ZED_EXTENSION_CLI_SHA: 03d8e9aee95ea6117d75a48bcac2e19241f6e667
   RUSTUP_TOOLCHAIN: stable
   CARGO_BUILD_TARGET: wasm32-wasip2
 on:

tooling/xtask/src/tasks/workflows/extension_tests.rs 🔗

@@ -8,7 +8,7 @@ use crate::tasks::workflows::{
     vars::{PathCondition, StepOutput, one_workflow_per_non_main_branch},
 };
 
-pub(crate) const ZED_EXTENSION_CLI_SHA: &str = "7cfce605704d41ca247e3f84804bf323f6c6caaf";
+pub(crate) const ZED_EXTENSION_CLI_SHA: &str = "03d8e9aee95ea6117d75a48bcac2e19241f6e667";
 
 // This should follow the set target in crates/extension/src/extension_builder.rs
 const EXTENSION_RUST_TARGET: &str = "wasm32-wasip2";