diff --git a/cumulus/Cargo.lock b/cumulus/Cargo.lock
index b8f44882f80199e4bc31c9384bd0d8edf6f4e16f..ee80e02671e54319d7bf0146c66d6a9f95bbc9a5 100644
--- a/cumulus/Cargo.lock
+++ b/cumulus/Cargo.lock
@@ -12257,9 +12257,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
 
 [[package]]
 name = "tokio"
-version = "1.22.0"
+version = "1.23.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d76ce4a75fb488c605c54bf610f221cea8b0dafb53333c1a67e8ee199dcd2ae3"
+checksum = "eab6d665857cc6ca78d6e80303a02cea7a7851e85dfbd77cbdc09bd129f1ef46"
 dependencies = [
  "autocfg",
  "bytes",
@@ -12272,7 +12272,7 @@ dependencies = [
  "signal-hook-registry",
  "socket2",
  "tokio-macros",
- "winapi",
+ "windows-sys 0.42.0",
 ]
 
 [[package]]
diff --git a/cumulus/client/network/Cargo.toml b/cumulus/client/network/Cargo.toml
index 1cb223332f74a33a0ee81cbee42b6f750aecda0a..8a81b80abb8bc7912a372a327b7cd1c873996513 100644
--- a/cumulus/client/network/Cargo.toml
+++ b/cumulus/client/network/Cargo.toml
@@ -31,7 +31,7 @@ cumulus-relay-chain-interface = { path = "../relay-chain-interface" }
 
 [dev-dependencies]
 portpicker = "0.1.1"
-tokio = { version = "1.22.0", features = ["macros"] }
+tokio = { version = "1.23.0", features = ["macros"] }
 url = "2.3.1"
 
 # Substrate
diff --git a/cumulus/client/pov-recovery/Cargo.toml b/cumulus/client/pov-recovery/Cargo.toml
index bb15c499c6d002146a8f0ca19768cdd1f0e6e480..ed842b05e80987f2d85b667ae96c75b8081d8e62 100644
--- a/cumulus/client/pov-recovery/Cargo.toml
+++ b/cumulus/client/pov-recovery/Cargo.toml
@@ -30,7 +30,7 @@ cumulus-primitives-core = { path = "../../primitives/core" }
 cumulus-relay-chain-interface = {path = "../relay-chain-interface"}
 
 [dev-dependencies]
-tokio = { version = "1.22.0", features = ["macros"] }
+tokio = { version = "1.23.0", features = ["macros"] }
 portpicker = "0.1.1"
 
 # Cumulus
diff --git a/cumulus/client/relay-chain-minimal-node/Cargo.toml b/cumulus/client/relay-chain-minimal-node/Cargo.toml
index a6feee58d751db76bcbee4c3e7263e6a74f86df7..939616b5372a6005de69892d155a22ab60f3785d 100644
--- a/cumulus/client/relay-chain-minimal-node/Cargo.toml
+++ b/cumulus/client/relay-chain-minimal-node/Cargo.toml
@@ -43,4 +43,4 @@ tracing = "0.1.37"
 async-trait = "0.1.59"
 futures = "0.3.25"
 url = "2.2.2"
-tokio = { version = "1.22.0", features = ["macros"] }
+tokio = { version = "1.23.0", features = ["macros"] }
diff --git a/cumulus/client/relay-chain-rpc-interface/Cargo.toml b/cumulus/client/relay-chain-rpc-interface/Cargo.toml
index 0633a0105ec4ada5eea1ebf59e58cea4b221a054..4072c23b245cfe26b9436d8f4ccd02dff1650adc 100644
--- a/cumulus/client/relay-chain-rpc-interface/Cargo.toml
+++ b/cumulus/client/relay-chain-rpc-interface/Cargo.toml
@@ -20,7 +20,7 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "
 sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
 sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" }
 sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
-tokio = { version = "1.22.0", features = ["sync"] }
+tokio = { version = "1.23.0", features = ["sync"] }
 
 futures = "0.3.25"
 futures-timer = "3.0.2"
diff --git a/cumulus/polkadot-parachain/Cargo.toml b/cumulus/polkadot-parachain/Cargo.toml
index 2797f0b0a58c6ea0b728c42361920e3b371b80b4..f9b7943b4d8353113f9a2fdca7ca655e61ce8440 100644
--- a/cumulus/polkadot-parachain/Cargo.toml
+++ b/cumulus/polkadot-parachain/Cargo.toml
@@ -99,7 +99,7 @@ substrate-build-script-utils = { git = "https://github.com/paritytech/substrate"
 assert_cmd = "2.0"
 nix = "0.25"
 tempfile = "3.3.0"
-tokio = { version = "1.22.0", features = ["macros", "time", "parking_lot"] }
+tokio = { version = "1.23.0", features = ["macros", "time", "parking_lot"] }
 wait-timeout = "0.2"
 # purge_chain_works works with rococo-local and needs to allow this
 polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master", features = ["rococo-native"] }
diff --git a/cumulus/test/service/Cargo.toml b/cumulus/test/service/Cargo.toml
index f3a0f215d9c03e276d677813195325742515ad8a..41b92cc1eb46e4c403e93c169d508b5a260a8eb9 100644
--- a/cumulus/test/service/Cargo.toml
+++ b/cumulus/test/service/Cargo.toml
@@ -16,7 +16,7 @@ criterion = { version = "0.4.0", features = [ "async_tokio" ] }
 jsonrpsee = { version = "0.16.2", features = ["server"] }
 rand = "0.8.5"
 serde = { version = "1.0.149", features = ["derive"] }
-tokio = { version = "1.22.0", features = ["macros"] }
+tokio = { version = "1.23.0", features = ["macros"] }
 tracing = "0.1.37"
 url = "2.3.1"