Bump actions/checkout from 3 to 4 #37
Annotations
5 errors and 1 warning
unnecessary hashes around raw string literal:
src/lib.rs#L208
error: unnecessary hashes around raw string literal
--> src/lib.rs:208:23
|
208 | .replace(':', r#"\:"#)
| ^^^^^^^ help: try: `r"\:"`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
|
unnecessary hashes around raw string literal:
src/lib.rs#L207
error: unnecessary hashes around raw string literal
--> src/lib.rs:207:23
|
207 | .replace(',', r#"\,"#)
| ^^^^^^^ help: try: `r"\,"`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
|
unnecessary hashes around raw string literal:
src/lib.rs#L206
error: unnecessary hashes around raw string literal
--> src/lib.rs:206:23
|
206 | .replace(';', r#"\;"#)
| ^^^^^^^ help: try: `r"\;"`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
|
unnecessary hashes around raw string literal:
src/lib.rs#L204
error: unnecessary hashes around raw string literal
--> src/lib.rs:204:24
|
204 | .replace('\\', r#"\\"#)
| ^^^^^^^ help: try: `r"\\"`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
note: the lint level is defined here
--> src/lib.rs:1:9
|
1 | #![deny(clippy::all)]
| ^^^^^^^^^^^
= note: `#[deny(clippy::needless_raw_string_hashes)]` implied by `#[deny(clippy::all)]`
|
clippy_check
Clippy had exited with the 101 exit code
|
clippy_check
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/
|