Skip to content

Adds update permissions intent and validation #1877

Adds update permissions intent and validation

Adds update permissions intent and validation #1877

Triggered via pull request June 28, 2024 14:59
Status Failure
Total duration 1m 45s
Artifacts

lint.yaml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

1 error and 4 warnings
lint
Process completed with exit code 101.
called `map_or(None, ..)` on an `Option` value: xmtp_mls/src/groups/mod.rs#L642
warning: called `map_or(None, ..)` on an `Option` value --> xmtp_mls/src/groups/mod.rs:642:13 | 642 | / metadata_field 643 | | .as_ref() 644 | | .map_or(None, |field| Some(field.to_string())), | |______________________________________________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#option_map_or_none = note: `#[warn(clippy::option_map_or_none)]` on by default help: consider using `map` | 642 ~ metadata_field 643 ~ .as_ref().map(|field| field.to_string()), |
called `map_or(None, ..)` on an `Option` value: xmtp_mls/src/groups/mod.rs#L642
warning: called `map_or(None, ..)` on an `Option` value --> xmtp_mls/src/groups/mod.rs:642:13 | 642 | / metadata_field 643 | | .as_ref() 644 | | .map_or(None, |field| Some(field.to_string())), | |______________________________________________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#option_map_or_none = note: `#[warn(clippy::option_map_or_none)]` on by default help: consider using `map` | 642 ~ metadata_field 643 ~ .as_ref().map(|field| field.to_string()), |
lint
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
lint
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-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/