Skip to content

Bump readmeio/rdme from 8 to 9 in the actions-dependencies group #887

Bump readmeio/rdme from 8 to 9 in the actions-dependencies group

Bump readmeio/rdme from 8 to 9 in the actions-dependencies group #887

Triggered via pull request December 9, 2024 10:52
Status Success
Total duration 4m 40s
Billable time 5m
Artifacts 2

build.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

6 warnings
build: src/snippets.rs#L509
[clippy] reported by reviewdog 🐶 warning: irrefutable `if let` pattern --> src/snippets.rs:509:22 | 509 | let snippet = if let Ok(path) = PathBuf::from_str(&args.snippet) { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this pattern will always match, so the `if let` is useless = help: consider replacing the `if let` with a `let` = note: `#[warn(irrefutable_let_patterns)]` on by default Raw Output: src/snippets.rs:509:22:w:warning: irrefutable `if let` pattern --> src/snippets.rs:509:22 | 509 | let snippet = if let Ok(path) = PathBuf::from_str(&args.snippet) { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this pattern will always match, so the `if let` is useless = help: consider replacing the `if let` with a `let` = note: `#[warn(irrefutable_let_patterns)]` on by default __END__
build: src/templates.rs#L782
[clippy] reported by reviewdog 🐶 warning: irrefutable `if let` pattern --> src/templates.rs:782:23 | 782 | let template = if let Ok(path) = PathBuf::from_str(&args.template) { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this pattern will always match, so the `if let` is useless = help: consider replacing the `if let` with a `let` Raw Output: src/templates.rs:782:23:w:warning: irrefutable `if let` pattern --> src/templates.rs:782:23 | 782 | let template = if let Ok(path) = PathBuf::from_str(&args.template) { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this pattern will always match, so the `if let` is useless = help: consider replacing the `if let` with a `let` __END__
build: src/experiments.rs#L165
[clippy] reported by reviewdog 🐶 warning: empty line after doc comment --> src/experiments.rs:163:1 | 163 | / /// This buffers text to be written to a notebook cell 164 | | | |_ 165 | struct NotebookUrlReplacer<'a>(&'a HashMap<String, CrawledNotebook>); | ------------------------------ the comment documents this struct | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments = note: `#[warn(clippy::empty_line_after_doc_comments)]` on by default = help: if the empty line is unintentional remove it Raw Output: src/experiments.rs:165:1:w:warning: empty line after doc comment --> src/experiments.rs:163:1 | 163 | / /// This buffers text to be written to a notebook cell 164 | | | |_ 165 | struct NotebookUrlReplacer<'a>(&'a HashMap<String, CrawledNotebook>); | ------------------------------ the comment documents this struct | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments = note: `#[warn(clippy::empty_line_after_doc_comments)]` on by default = help: if the empty line is unintentional remove it __END__
build: src/experiments.rs#L167
[clippy] reported by reviewdog 🐶 warning: the following explicit lifetimes could be elided: 'a --> src/experiments.rs:167:6 | 167 | impl<'a> Replacer for NotebookUrlReplacer<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `#[warn(clippy::needless_lifetimes)]` on by default help: elide the lifetimes | 167 - impl<'a> Replacer for NotebookUrlReplacer<'a> { 167 + impl Replacer for NotebookUrlReplacer<'_> { | Raw Output: src/experiments.rs:167:6:w:warning: the following explicit lifetimes could be elided: 'a --> src/experiments.rs:167:6 | 167 | impl<'a> Replacer for NotebookUrlReplacer<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `#[warn(clippy::needless_lifetimes)]` on by default help: elide the lifetimes | 167 - impl<'a> Replacer for NotebookUrlReplacer<'a> { 167 + impl Replacer for NotebookUrlReplacer<'_> { | __END__
build: src/labels.rs#L44
[clippy] reported by reviewdog 🐶 warning: empty line after doc comment --> src/labels.rs:44:5 | 44 | / /// Workspace to use 45 | | | |_ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments = help: if the empty line is unintentional remove it Raw Output: src/labels.rs:44:5:w:warning: empty line after doc comment --> src/labels.rs:44:5 | 44 | / /// Workspace to use 45 | | | |_ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments = help: if the empty line is unintentional remove it __END__
build: src/templates.rs#L525
[clippy] reported by reviewdog 🐶 warning: empty line after doc comment --> src/templates.rs:523:1 | 523 | / /// Expand a template that is either a local file or one hosted remotely 524 | | | |_ 525 | / async fn expand_template_file( 526 | | client: &ApiClient, 527 | | workspace_id: Base64Uuid, 528 | | template: String, 529 | | template_arguments: Option<TemplateArguments>, 530 | | ) -> Result<Notebook> { | |_____________________- the comment documents this function | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments = help: if the empty line is unintentional remove it Raw Output: src/templates.rs:525:1:w:warning: empty line after doc comment --> src/templates.rs:523:1 | 523 | / /// Expand a template that is either a local file or one hosted remotely 524 | | | |_ 525 | / async fn expand_template_file( 526 | | client: &ApiClient, 527 | | workspace_id: Base64Uuid, 528 | | template: String, 529 | | template_arguments: Option<TemplateArguments>, 530 | | ) -> Result<Notebook> { | |_____________________- the comment documents this function | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments = help: if the empty line is unintentional remove it __END__

Artifacts

Produced during runtime
Name Size
fp Expired
10.3 MB
manifest.json Expired
399 Bytes