Skip to content

.github/workflows/workspace.yml #443

.github/workflows/workspace.yml

.github/workflows/workspace.yml #443

Triggered via schedule December 18, 2023 15:19
Status Success
Total duration 25m 46s
Artifacts
This run and associated checks have been archived and are scheduled for deletion. Learn more about checks retention

workspace.yml

on: schedule
Matrix: build-and-test
Fit to window
Zoom out
Zoom in

Annotations

18 warnings
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy@master. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): x509-certificate/src/signing.rs#L54
warning: very complex type used. Consider factoring parts into `type` definitions --> x509-certificate/src/signing.rs:54:29 | 54 | fn rsa_primes(&self) -> Result<Option<(Zeroizing<Vec<u8>>, Zeroizing<Vec<u8>>)>, Error>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity = note: `#[warn(clippy::type_complexity)]` on by default
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): cryptographic-message-syntax/src/lib.rs#L883
warning: accessing first element with `content_type .values.get(0)` --> cryptographic-message-syntax/src/lib.rs:883:32 | 883 | let content_type = content_type | ________________________________^ 884 | | .values 885 | | .get(0) | |_______________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first = note: `#[warn(clippy::get_first)]` on by default help: try | 883 ~ let content_type = content_type 884 + .values.first() |
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): cryptographic-message-syntax/src/lib.rs#L903
warning: accessing first element with `message_digest .values.get(0)` --> cryptographic-message-syntax/src/lib.rs:903:34 | 903 | let message_digest = message_digest | __________________________________^ 904 | | .values 905 | | .get(0) | |_______________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first help: try | 903 ~ let message_digest = message_digest 904 + .values.first() |
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): cryptographic-message-syntax/src/lib.rs#L922
warning: accessing first element with `attr .values.get(0)` --> cryptographic-message-syntax/src/lib.rs:922:36 | 922 | let time = attr | ____________________________________^ 923 | | .values 924 | | .get(0) | |___________________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first help: try | 922 ~ let time = attr 923 + .values.first() |
build-and-test (beta, ubuntu-22.04, x86_64-unknown-linux-gnu): cryptographic-message-syntax/src/lib.rs#L959
warning: accessing first element with `attr.values.get(0)` --> cryptographic-message-syntax/src/lib.rs:959:36 | 959 | ... Ok(attr.values.get(0).unwrap().deref().clone().decode(|cons| { | ^^^^^^^^^^^^^^^^^^ help: try: `attr.values.first()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy@master. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
build-and-test (stable, ubuntu-22.04, x86_64-unknown-linux-gnu): x509-certificate/src/signing.rs#L54
warning: very complex type used. Consider factoring parts into `type` definitions --> x509-certificate/src/signing.rs:54:29 | 54 | fn rsa_primes(&self) -> Result<Option<(Zeroizing<Vec<u8>>, Zeroizing<Vec<u8>>)>, Error>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity = note: `#[warn(clippy::type_complexity)]` on by default
build-and-test (beta, windows-2022, x86_64-pc-windows-msvc)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy@master. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
build-and-test (stable, windows-2022, x86_64-pc-windows-msvc)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy@master. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
build-and-test (beta, macos-12, x86_64-apple-darwin)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy@master. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
build-and-test (beta, macos-12, x86_64-apple-darwin): x509-certificate/src/signing.rs#L54
warning: very complex type used. Consider factoring parts into `type` definitions --> x509-certificate/src/signing.rs:54:29 | 54 | fn rsa_primes(&self) -> Result<Option<(Zeroizing<Vec<u8>>, Zeroizing<Vec<u8>>)>, Error>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity = note: `#[warn(clippy::type_complexity)]` on by default
build-and-test (beta, macos-12, x86_64-apple-darwin): cryptographic-message-syntax/src/lib.rs#L883
warning: accessing first element with `content_type .values.get(0)` --> cryptographic-message-syntax/src/lib.rs:883:32 | 883 | let content_type = content_type | ________________________________^ 884 | | .values 885 | | .get(0) | |_______________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first = note: `#[warn(clippy::get_first)]` on by default help: try | 883 ~ let content_type = content_type 884 + .values.first() |
build-and-test (beta, macos-12, x86_64-apple-darwin): cryptographic-message-syntax/src/lib.rs#L903
warning: accessing first element with `message_digest .values.get(0)` --> cryptographic-message-syntax/src/lib.rs:903:34 | 903 | let message_digest = message_digest | __________________________________^ 904 | | .values 905 | | .get(0) | |_______________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first help: try | 903 ~ let message_digest = message_digest 904 + .values.first() |
build-and-test (beta, macos-12, x86_64-apple-darwin): cryptographic-message-syntax/src/lib.rs#L922
warning: accessing first element with `attr .values.get(0)` --> cryptographic-message-syntax/src/lib.rs:922:36 | 922 | let time = attr | ____________________________________^ 923 | | .values 924 | | .get(0) | |___________________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first help: try | 922 ~ let time = attr 923 + .values.first() |
build-and-test (beta, macos-12, x86_64-apple-darwin): cryptographic-message-syntax/src/lib.rs#L959
warning: accessing first element with `attr.values.get(0)` --> cryptographic-message-syntax/src/lib.rs:959:36 | 959 | ... Ok(attr.values.get(0).unwrap().deref().clone().decode(|cons| { | ^^^^^^^^^^^^^^^^^^ help: try: `attr.values.first()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first
build-and-test (stable, macos-12, x86_64-apple-darwin)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy@master. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
build-and-test (stable, macos-12, x86_64-apple-darwin): x509-certificate/src/signing.rs#L54
warning: very complex type used. Consider factoring parts into `type` definitions --> x509-certificate/src/signing.rs:54:29 | 54 | fn rsa_primes(&self) -> Result<Option<(Zeroizing<Vec<u8>>, Zeroizing<Vec<u8>>)>, Error>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity = note: `#[warn(clippy::type_complexity)]` on by default