Skip to content

Patches

Patches #123

Triggered via pull request February 2, 2024 13:49
@juchiastjuchiast
synchronize #50
api
Status Failure
Total duration 11m 4s
Artifacts

basic.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

1 error and 56 warnings
Unit test
Process completed with exit code 101.
you seem to use `.enumerate()` and immediately discard the index: crates/cmds-solana/src/wormhole/verify_signatures.rs#L74
warning: you seem to use `.enumerate()` and immediately discard the index --> crates/cmds-solana/src/wormhole/verify_signatures.rs:74:31 | 74 | for (_tx_index, chunk) in signature_items.chunks(7).enumerate() { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unused_enumerate_index = note: `#[warn(clippy::unused_enumerate_index)]` on by default help: remove the `.enumerate()` call | 74 | for chunk in signature_items.chunks(7) { | ~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~
a `const` item should never be interior mutable: crates/flow-server/src/middleware/auth.rs#L73
warning: a `const` item should never be interior mutable --> crates/flow-server/src/middleware/auth.rs:73:1 | 73 | pub const X_API_KEY: HeaderName = HeaderName::from_static("x-api-key"); | -----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | | | make this a static item (maybe with lazy_static) | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#declare_interior_mutable_const = note: `#[warn(clippy::declare_interior_mutable_const)]` on by default
a `const` item should never be interior mutable: crates/flow-server/src/middleware/auth.rs#L73
warning: a `const` item should never be interior mutable --> crates/flow-server/src/middleware/auth.rs:73:1 | 73 | pub const X_API_KEY: HeaderName = HeaderName::from_static("x-api-key"); | -----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | | | make this a static item (maybe with lazy_static) | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#declare_interior_mutable_const = note: `#[warn(clippy::declare_interior_mutable_const)]` on by default
you seem to use `.enumerate()` and immediately discard the index: crates/cmds-solana/src/wormhole/verify_signatures.rs#L74
warning: you seem to use `.enumerate()` and immediately discard the index --> crates/cmds-solana/src/wormhole/verify_signatures.rs:74:31 | 74 | for (_tx_index, chunk) in signature_items.chunks(7).enumerate() { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unused_enumerate_index = note: `#[warn(clippy::unused_enumerate_index)]` on by default help: remove the `.enumerate()` call | 74 | for chunk in signature_items.chunks(7) { | ~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~
redundant closure: crates/db/src/connection/conn_impl.rs#L814
warning: redundant closure --> crates/db/src/connection/conn_impl.rs:814:62 | 814 | let signatures = signatures.map(|arr| arr.iter().map(|p| Json(p)).collect::<Vec<_>>()); | ^^^^^^^^^^^ help: replace the closure with the function itself: `Json` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure = note: `#[warn(clippy::redundant_closure)]` on by default
redundant closure: crates/db/src/connection/conn_impl.rs#L814
warning: redundant closure --> crates/db/src/connection/conn_impl.rs:814:62 | 814 | let signatures = signatures.map(|arr| arr.iter().map(|p| Json(p)).collect::<Vec<_>>()); | ^^^^^^^^^^^ help: replace the closure with the function itself: `Json` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure = note: `#[warn(clippy::redundant_closure)]` on by default
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L360
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:360:17 | 360 | let res = self.save_signature(&id, &signature).await?; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `self.save_signature(&id, &signature).await?;` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L335
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:335:17 | 335 | let res = self.set_node_finish(&id, &node_id, &times, &time).await?; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `self.set_node_finish(&id, &node_id, &times, &time).await?;` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L330
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:330:17 | 330 | let res = self.push_node_error(&id, &node_id, &times, &error).await?; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `self.push_node_error(&id, &node_id, &times, &error).await?;` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L322
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:322:17 | 322 | / let res = self 323 | | .save_node_output(&id, &node_id, &times, &output) 324 | | .await?; | |____________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value help: omit the `let` binding | 322 ~ self 323 + .save_node_output(&id, &node_id, &times, &output) 324 + .await?; |
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L315
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:315:17 | 315 | / let res = self 316 | | .new_node_run(&id, &node_id, &times, &time, &input) 317 | | .await?; | |____________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value help: omit the `let` binding | 315 ~ self 316 + .new_node_run(&id, &node_id, &times, &time, &input) 317 + .await?; |
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L310
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:310:17 | 310 | let res = self.set_run_result(&id, &time, &not_run, &output).await?; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `self.set_run_result(&id, &time, &not_run, &output).await?;` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L302
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:302:17 | 302 | / let res = self 303 | | .push_flow_log(&id, &index, &time, &level, &module, &content) 304 | | .await?; | |____________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value help: omit the `let` binding | 302 ~ self 303 + .push_flow_log(&id, &index, &time, &level, &module, &content) 304 + .await?; |
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L296
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:296:17 | 296 | let res = self.push_flow_error(&id, &error).await?; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `self.push_flow_error(&id, &error).await?;` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L291
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:291:17 | 291 | let res = self.set_start_time(&id, &time).await?; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `self.set_start_time(&id, &time).await?;` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L256
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:256:17 | 256 | let res = self.share_flow_run(id, user).await?; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `self.share_flow_run(id, user).await?;` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value = note: `#[warn(clippy::let_unit_value)]` on by default
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L360
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:360:17 | 360 | let res = self.save_signature(&id, &signature).await?; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `self.save_signature(&id, &signature).await?;` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L335
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:335:17 | 335 | let res = self.set_node_finish(&id, &node_id, &times, &time).await?; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `self.set_node_finish(&id, &node_id, &times, &time).await?;` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L330
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:330:17 | 330 | let res = self.push_node_error(&id, &node_id, &times, &error).await?; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `self.push_node_error(&id, &node_id, &times, &error).await?;` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L322
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:322:17 | 322 | / let res = self 323 | | .save_node_output(&id, &node_id, &times, &output) 324 | | .await?; | |____________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value help: omit the `let` binding | 322 ~ self 323 + .save_node_output(&id, &node_id, &times, &output) 324 + .await?; |
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L315
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:315:17 | 315 | / let res = self 316 | | .new_node_run(&id, &node_id, &times, &time, &input) 317 | | .await?; | |____________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value help: omit the `let` binding | 315 ~ self 316 + .new_node_run(&id, &node_id, &times, &time, &input) 317 + .await?; |
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L310
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:310:17 | 310 | let res = self.set_run_result(&id, &time, &not_run, &output).await?; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `self.set_run_result(&id, &time, &not_run, &output).await?;` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L302
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:302:17 | 302 | / let res = self 303 | | .push_flow_log(&id, &index, &time, &level, &module, &content) 304 | | .await?; | |____________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value help: omit the `let` binding | 302 ~ self 303 + .push_flow_log(&id, &index, &time, &level, &module, &content) 304 + .await?; |
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L296
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:296:17 | 296 | let res = self.push_flow_error(&id, &error).await?; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `self.push_flow_error(&id, &error).await?;` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L291
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:291:17 | 291 | let res = self.set_start_time(&id, &time).await?; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `self.set_start_time(&id, &time).await?;` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value
this let-binding has unit value: crates/db/src/connection/proxied_user_conn.rs#L256
warning: this let-binding has unit value --> crates/db/src/connection/proxied_user_conn.rs:256:17 | 256 | let res = self.share_flow_run(id, user).await?; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: omit the `let` binding: `self.share_flow_run(id, user).await?;` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_unit_value = note: `#[warn(clippy::let_unit_value)]` on by default
you seem to be trying to use `match` for an equality check. Consider using `if`: crates/pdg-common/src/nft_metadata/generate.rs#L448
warning: you seem to be trying to use `match` for an equality check. Consider using `if` --> crates/pdg-common/src/nft_metadata/generate.rs:448:9 | 448 | / match self.fx0 { 449 | | Fx0::Wood => { 450 | | self.wood_variation = WoodVariation::choose(rng); 451 | | } 452 | | _ => {} 453 | | } | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_match help: try | 448 ~ if self.fx0 == Fx0::Wood { 449 + self.wood_variation = WoodVariation::choose(rng); 450 + } |
you seem to be trying to use `match` for an equality check. Consider using `if`: crates/pdg-common/src/nft_metadata/generate.rs#L438
warning: you seem to be trying to use `match` for an equality check. Consider using `if` --> crates/pdg-common/src/nft_metadata/generate.rs:438:9 | 438 | / match self.fx0 { 439 | | Fx0::Marble => { 440 | | self.marble_variation = MarbleVariation::choose(rng); 441 | | } 442 | | _ => {} 443 | | } | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_match help: try | 438 ~ if self.fx0 == Fx0::Marble { 439 + self.marble_variation = MarbleVariation::choose(rng); 440 + } |
you seem to be trying to use `match` for an equality check. Consider using `if`: crates/pdg-common/src/nft_metadata/generate.rs#L428
warning: you seem to be trying to use `match` for an equality check. Consider using `if` --> crates/pdg-common/src/nft_metadata/generate.rs:428:9 | 428 | / match self.fx0 { 429 | | Fx0::No => { 430 | | self.body_material_variation = BodyMaterialVariations::choose(rng); 431 | | } 432 | | _ => {} 433 | | } | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_match help: try | 428 ~ if self.fx0 == Fx0::No { 429 + self.body_material_variation = BodyMaterialVariations::choose(rng); 430 + } |
you seem to be trying to use `match` for an equality check. Consider using `if`: crates/pdg-common/src/nft_metadata/generate.rs#L381
warning: you seem to be trying to use `match` for an equality check. Consider using `if` --> crates/pdg-common/src/nft_metadata/generate.rs:381:9 | 381 | / match self.fx2 { 382 | | Fx2::Underwater => { 383 | | let jellyfish = FxJellyfish::choose(rng); 384 | | self.fx_jellifish = jellyfish; ... | 396 | | _ => {} 397 | | } | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_match = note: `#[warn(clippy::single_match)]` on by default help: try | 381 ~ if self.fx2 == Fx2::Underwater { 382 + let jellyfish = FxJellyfish::choose(rng); 383 + self.fx_jellifish = jellyfish; 384 + 385 + self.underwater_fog_amount = rng.gen::<f64>() * 30.0; 386 + self.background_underwater_color_hue = 38.8; 387 + 388 + let env_light = if self.fx0 == Fx0::Hologram { 389 + EnvLight::UnderwaterHologram 390 + } else { 391 + EnvLight::Underwater 392 + }; 393 + self.env_light = env_light; 394 + } |
this returns a `Result<_, ()>`: crates/utils/src/address_book.rs#L64
warning: this returns a `Result<_, ()>` --> crates/utils/src/address_book.rs:64:5 | 64 | / pub fn try_start_with_context<A, F>( 65 | | &mut self, 66 | | id: A::ID, 67 | | make_actor: F, 68 | | rt: ArbiterHandle, 69 | | ) -> Result<actix::Addr<A>, ()> | |___________________________________^ | = help: use a custom `Error` type instead = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_unit_err = note: `#[warn(clippy::result_unit_err)]` on by default
you seem to be trying to use `match` for an equality check. Consider using `if`: crates/pdg-common/src/nft_metadata/generate.rs#L448
warning: you seem to be trying to use `match` for an equality check. Consider using `if` --> crates/pdg-common/src/nft_metadata/generate.rs:448:9 | 448 | / match self.fx0 { 449 | | Fx0::Wood => { 450 | | self.wood_variation = WoodVariation::choose(rng); 451 | | } 452 | | _ => {} 453 | | } | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_match help: try | 448 ~ if self.fx0 == Fx0::Wood { 449 + self.wood_variation = WoodVariation::choose(rng); 450 + } |
you seem to be trying to use `match` for an equality check. Consider using `if`: crates/pdg-common/src/nft_metadata/generate.rs#L438
warning: you seem to be trying to use `match` for an equality check. Consider using `if` --> crates/pdg-common/src/nft_metadata/generate.rs:438:9 | 438 | / match self.fx0 { 439 | | Fx0::Marble => { 440 | | self.marble_variation = MarbleVariation::choose(rng); 441 | | } 442 | | _ => {} 443 | | } | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_match help: try | 438 ~ if self.fx0 == Fx0::Marble { 439 + self.marble_variation = MarbleVariation::choose(rng); 440 + } |
you seem to be trying to use `match` for an equality check. Consider using `if`: crates/pdg-common/src/nft_metadata/generate.rs#L428
warning: you seem to be trying to use `match` for an equality check. Consider using `if` --> crates/pdg-common/src/nft_metadata/generate.rs:428:9 | 428 | / match self.fx0 { 429 | | Fx0::No => { 430 | | self.body_material_variation = BodyMaterialVariations::choose(rng); 431 | | } 432 | | _ => {} 433 | | } | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_match help: try | 428 ~ if self.fx0 == Fx0::No { 429 + self.body_material_variation = BodyMaterialVariations::choose(rng); 430 + } |
you seem to be trying to use `match` for an equality check. Consider using `if`: crates/pdg-common/src/nft_metadata/generate.rs#L381
warning: you seem to be trying to use `match` for an equality check. Consider using `if` --> crates/pdg-common/src/nft_metadata/generate.rs:381:9 | 381 | / match self.fx2 { 382 | | Fx2::Underwater => { 383 | | let jellyfish = FxJellyfish::choose(rng); 384 | | self.fx_jellifish = jellyfish; ... | 396 | | _ => {} 397 | | } | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_match = note: `#[warn(clippy::single_match)]` on by default help: try | 381 ~ if self.fx2 == Fx2::Underwater { 382 + let jellyfish = FxJellyfish::choose(rng); 383 + self.fx_jellifish = jellyfish; 384 + 385 + self.underwater_fog_amount = rng.gen::<f64>() * 30.0; 386 + self.background_underwater_color_hue = 38.8; 387 + 388 + let env_light = if self.fx0 == Fx0::Hologram { 389 + EnvLight::UnderwaterHologram 390 + } else { 391 + EnvLight::Underwater 392 + }; 393 + self.env_light = env_light; 394 + } |
this returns a `Result<_, ()>`: crates/utils/src/address_book.rs#L64
warning: this returns a `Result<_, ()>` --> crates/utils/src/address_book.rs:64:5 | 64 | / pub fn try_start_with_context<A, F>( 65 | | &mut self, 66 | | id: A::ID, 67 | | make_actor: F, 68 | | rt: ArbiterHandle, 69 | | ) -> Result<actix::Addr<A>, ()> | |___________________________________^ | = help: use a custom `Error` type instead = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_unit_err = note: `#[warn(clippy::result_unit_err)]` on by default
Clippy lint
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/toolchain@v1, actions/checkout@v3, Swatinem/rust-cache@v1, 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/.
Clippy lint
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, Swatinem/rust-cache@v1, 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/
Clippy lint
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy lint
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy lint
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy lint
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy lint
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy lint
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy lint
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Clippy lint
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit test
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/toolchain@v1, actions/checkout@v3, Swatinem/rust-cache@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Unit test
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@v1, Swatinem/rust-cache@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Unit test
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit test
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit test
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit test
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit test
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit test
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit test
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit test
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/