Skip to content

Commit 5a705cf

Browse files
committed
feat(deps): update sysdig-cli-scanner to v1.23.0
1 parent 5fbf085 commit 5a705cf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/infra/scanner_binary_manager.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pub(super) struct ScannerBinaryManager {}
4040

4141
impl ScannerBinaryManager {
4242
const fn version(&self) -> Version {
43-
Version::new(1, 22, 6)
43+
Version::new(1, 23, 0)
4444
}
4545

4646
pub async fn install_expected_version_if_not_present(
@@ -193,7 +193,7 @@ mod tests {
193193
async fn it_gets_the_wanted_version() {
194194
let mgr = ScannerBinaryManager::default();
195195

196-
assert_eq!(mgr.version().to_string(), "1.22.6");
196+
assert_eq!(mgr.version().to_string(), "1.23.0");
197197
}
198198

199199
#[tokio::test]
@@ -233,7 +233,7 @@ mod tests {
233233
.await
234234
.unwrap()
235235
.to_string(),
236-
"1.22.6"
236+
"1.23.0"
237237
);
238238
}
239239

@@ -256,7 +256,7 @@ mod tests {
256256
.await
257257
.unwrap()
258258
.to_string(),
259-
"1.22.6"
259+
"1.23.0"
260260
);
261261
}
262262
}

0 commit comments

Comments
 (0)