diff --git a/cumulus/Cargo.lock b/cumulus/Cargo.lock
index 47ff65325def835cf4f682beceac1ec6cb281032..8d1c5da8bc7500dc9053d6de195ee41025ee3edf 100644
--- a/cumulus/Cargo.lock
+++ b/cumulus/Cargo.lock
@@ -989,9 +989,9 @@ dependencies = [
 
 [[package]]
 name = "clap"
-version = "4.0.11"
+version = "4.0.17"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4ed45cc2c62a3eff523e718d8576ba762c83a3146151093283ac62ae11933a73"
+checksum = "06badb543e734a2d6568e19a40af66ed5364360b9226184926f89d229b4b4267"
 dependencies = [
  "atty",
  "bitflags",
@@ -1004,9 +1004,9 @@ dependencies = [
 
 [[package]]
 name = "clap_derive"
-version = "4.0.10"
+version = "4.0.13"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "db342ce9fda24fb191e2ed4e102055a4d381c1086a06630174cd8da8d5d917ce"
+checksum = "c42f169caba89a7d512b5418b09864543eeb4d497416c917d7137863bd2076ad"
 dependencies = [
  "heck",
  "proc-macro-error",
@@ -1521,7 +1521,7 @@ dependencies = [
 name = "cumulus-client-cli"
 version = "0.1.0"
 dependencies = [
- "clap 4.0.11",
+ "clap 4.0.17",
  "parity-scale-codec",
  "sc-chain-spec",
  "sc-cli",
@@ -2147,7 +2147,7 @@ name = "cumulus-test-service"
 version = "0.1.0"
 dependencies = [
  "async-trait",
- "clap 4.0.11",
+ "clap 4.0.17",
  "criterion",
  "cumulus-client-cli",
  "cumulus-client-consensus-common",
@@ -2853,7 +2853,7 @@ dependencies = [
  "Inflector",
  "array-bytes",
  "chrono",
- "clap 4.0.11",
+ "clap 4.0.17",
  "comfy-table",
  "frame-benchmarking",
  "frame-support",
@@ -6370,7 +6370,7 @@ dependencies = [
 name = "parachain-template-node"
 version = "0.1.0"
 dependencies = [
- "clap 4.0.11",
+ "clap 4.0.17",
  "cumulus-client-cli",
  "cumulus-client-consensus-aura",
  "cumulus-client-consensus-common",
@@ -6970,7 +6970,7 @@ name = "polkadot-cli"
 version = "0.9.29"
 source = "git+https://github.com/paritytech/polkadot?branch=master#6e1baff5de3246dc14548c8f3b17633077ba8f6a"
 dependencies = [
- "clap 4.0.11",
+ "clap 4.0.17",
  "frame-benchmarking-cli",
  "futures",
  "log",
@@ -7631,7 +7631,7 @@ version = "0.9.300"
 dependencies = [
  "assert_cmd",
  "async-trait",
- "clap 4.0.11",
+ "clap 4.0.17",
  "collectives-polkadot-runtime",
  "contracts-rococo-runtime",
  "cumulus-client-cli",
@@ -9263,7 +9263,7 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818
 dependencies = [
  "array-bytes",
  "chrono",
- "clap 4.0.11",
+ "clap 4.0.17",
  "fdlimit",
  "futures",
  "libp2p",
@@ -12375,7 +12375,7 @@ name = "try-runtime-cli"
 version = "0.10.0-dev"
 source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8"
 dependencies = [
- "clap 4.0.11",
+ "clap 4.0.17",
  "frame-try-runtime",
  "jsonrpsee",
  "log",
diff --git a/cumulus/client/cli/Cargo.toml b/cumulus/client/cli/Cargo.toml
index 968d19e8000262a388e88f87740b2eea535bf087..9fcbb96a80a0be499075018e63fd313cb7efb31f 100644
--- a/cumulus/client/cli/Cargo.toml
+++ b/cumulus/client/cli/Cargo.toml
@@ -5,7 +5,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
 edition = "2021"
 
 [dependencies]
-clap = { version = "4.0.9", features = ["derive"] }
+clap = { version = "4.0.17", features = ["derive"] }
 codec = { package = "parity-scale-codec", version = "3.0.0" }
 url = "2.3.1"
 
diff --git a/cumulus/parachain-template/node/Cargo.toml b/cumulus/parachain-template/node/Cargo.toml
index 6c4fb5457114e2108f8fd0aa55d17c91dc3cb99b..c482ff18787ba0e802b7fcf0de37c555871bc74c 100644
--- a/cumulus/parachain-template/node/Cargo.toml
+++ b/cumulus/parachain-template/node/Cargo.toml
@@ -10,7 +10,7 @@ edition = "2021"
 build = "build.rs"
 
 [dependencies]
-clap = { version = "4.0.9", features = ["derive"] }
+clap = { version = "4.0.17", features = ["derive"] }
 log = "0.4.17"
 codec = { package = "parity-scale-codec", version = "3.0.0" }
 serde = { version = "1.0.145", features = ["derive"] }
diff --git a/cumulus/polkadot-parachain/Cargo.toml b/cumulus/polkadot-parachain/Cargo.toml
index bb06fa08f96c18abe616c8aaa5b7670b88192045..d57894c225b551db548a0ad81909a3d339e506cc 100644
--- a/cumulus/polkadot-parachain/Cargo.toml
+++ b/cumulus/polkadot-parachain/Cargo.toml
@@ -8,7 +8,7 @@ description = "Runs a polkadot parachain node which could be a collator."
 
 [dependencies]
 async-trait = "0.1.57"
-clap = { version = "4.0.9", features = ["derive"] }
+clap = { version = "4.0.17", features = ["derive"] }
 codec = { package = "parity-scale-codec", version = "3.0.0" }
 futures = "0.3.24"
 hex-literal = "0.3.4"
diff --git a/cumulus/test/service/Cargo.toml b/cumulus/test/service/Cargo.toml
index 2e9c07f77182a5b33428ee8db80ecdb022843e64..bef0c60ec758ff5a3d68c2848e85f7a9f687a7b1 100644
--- a/cumulus/test/service/Cargo.toml
+++ b/cumulus/test/service/Cargo.toml
@@ -10,7 +10,7 @@ path = "src/main.rs"
 
 [dependencies]
 async-trait = "0.1.57"
-clap = { version = "4.0.9", features = ["derive"] }
+clap = { version = "4.0.17", features = ["derive"] }
 codec = { package = "parity-scale-codec", version = "3.0.0" }
 criterion = { version = "0.4.0", features = [ "async_tokio" ] }
 jsonrpsee = { version = "0.15.1", features = ["server"] }