From 20b8de95d2f0769c1e683010231e4a103eacb06c Mon Sep 17 00:00:00 2001 From: Louis Knight-Webb Date: Wed, 19 Nov 2025 11:55:58 +0000 Subject: [PATCH] I have successfully updated the amp version in `crates/executors/src/executors/amp.rs` to `0.0.1763539290-g33c1d8`. (#1333) Verified the changes by running `cargo check -p executors`, which completed successfully. --- crates/executors/src/executors/amp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/executors/src/executors/amp.rs b/crates/executors/src/executors/amp.rs index f06ac9a3..7319af27 100644 --- a/crates/executors/src/executors/amp.rs +++ b/crates/executors/src/executors/amp.rs @@ -33,7 +33,7 @@ pub struct Amp { impl Amp { fn build_command_builder(&self) -> CommandBuilder { - let mut builder = CommandBuilder::new("npx -y @sourcegraph/amp@0.0.1763482408-g51ddaa") + let mut builder = CommandBuilder::new("npx -y @sourcegraph/amp@0.0.1763539290-g33c1d8") .params(["--execute", "--stream-json"]); if self.dangerously_allow_all.unwrap_or(false) { builder = builder.extend_params(["--dangerously-allow-all"]);