Skip to content

Merge pull request #5 from phip1611/rustls-fix #39

Merge pull request #5 from phip1611/rustls-fix

Merge pull request #5 from phip1611/rustls-fix #39

Triggered via push May 2, 2024 11:53
Status Success
Total duration 18s
Artifacts

security.yaml

on: push
security_audit
7s
security_audit
Fit to window
Zoom out
Zoom in

Annotations

3 warnings
security_audit
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/audit-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
security_audit
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/audit-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
called `iter().cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable: src/lib.rs#L60
warning: called `iter().cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable --> src/lib.rs:60:50 | 60 | roots: webpki_roots::TLS_SERVER_ROOTS.iter().cloned().collect(), | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `.to_vec()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#iter_cloned_collect = note: `-W clippy::iter-cloned-collect` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::iter_cloned_collect)]`