Add bevy_framepace to control the framerate in the demos #249
ci.yml
on: push
Matrix: Tests
Update Docs and Demos in GitHub Pages
15m 30s
Rustfmt
8s
CI
1s
deploy-ghpages
1m 21s
Annotations
172 warnings
Rustfmt
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Rustfmt
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Rustfmt
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/
|
Rustfmt
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/
|
Rustfmt
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/
|
Rustfmt
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/
|
using `clone` on type `ThingToShow` which implements the `Copy` trait:
demos/src/ui/mod.rs#L206
warning: using `clone` on type `ThingToShow` which implements the `Copy` trait
--> demos/src/ui/mod.rs:206:57
|
206 | let mut thing_to_show = ui.memory_mut(|mem| mem.data.get_temp_mut_or_default::<ThingToShow>(thing_to_show_id).clone());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try dereferencing it: `*mem.data.get_temp_mut_or_default::<ThingToShow>(thing_to_show_id)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
= note: `#[warn(clippy::clone_on_copy)]` on by default
|
associated function `make_system` is never used:
demos/src/moving_platform.rs#L63
warning: associated function `make_system` is never used
--> demos/src/moving_platform.rs:63:8
|
54 | impl MovingPlatform {
| ------------------- associated function in this implementation
...
63 | fn make_system<V: Component>(
| ^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
|
unused variable: `setting_from_ui`:
demos/src/ui/mod.rs#L282
warning: unused variable: `setting_from_ui`
--> demos/src/ui/mod.rs:282:5
|
282 | setting_from_ui: Res<DemoUiPhysicsBackendActive>,
| ^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_setting_from_ui`
|
unused variable: `app`:
demos/src/moving_platform.rs#L7
warning: unused variable: `app`
--> demos/src/moving_platform.rs:7:21
|
7 | fn build(&self, app: &mut App) {
| ^^^ help: if this is intentional, prefix it with an underscore: `_app`
|
= note: `#[warn(unused_variables)]` on by default
|
variable does not need to be mutable:
demos/src/bin/platformer_3d.rs#L306
warning: variable does not need to be mutable
--> demos/src/bin/platformer_3d.rs:306:18
|
306 | |mut cmd, use_collision_groups| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_3d.rs#L284
warning: variable does not need to be mutable
--> demos/src/bin/platformer_3d.rs:284:48
|
284 | .with_checkbox("Lock Tilt", true, |mut cmd, lock_tilt| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_3d.rs#L276
warning: variable does not need to be mutable
--> demos/src/bin/platformer_3d.rs:276:39
|
276 | ("ball (exact)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_3d.rs#L270
warning: variable does not need to be mutable
--> demos/src/bin/platformer_3d.rs:270:42
|
270 | ("ball (underfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_3d.rs#L262
warning: variable does not need to be mutable
--> demos/src/bin/platformer_3d.rs:262:41
|
262 | ("flat (overfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_3d.rs#L254
warning: variable does not need to be mutable
--> demos/src/bin/platformer_3d.rs:254:39
|
254 | ("flat (exact)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_3d.rs#L246
warning: variable does not need to be mutable
--> demos/src/bin/platformer_3d.rs:246:42
|
246 | ("flat (underfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_3d.rs#L240
warning: variable does not need to be mutable
--> demos/src/bin/platformer_3d.rs:240:29
|
240 | ("no", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L352
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:352:59
|
352 | cmd.insert(TnuaCrouchEnforcer::new(0.5 * Vector3::Y, |cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `use_collision_groups`:
demos/src/bin/platformer_3d.rs#L306
warning: unused variable: `use_collision_groups`
--> demos/src/bin/platformer_3d.rs:306:27
|
306 | |mut cmd, use_collision_groups| {
| ^^^^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_use_collision_groups`
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L306
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:306:22
|
306 | |mut cmd, use_collision_groups| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L284
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:284:52
|
284 | .with_checkbox("Lock Tilt", true, |mut cmd, lock_tilt| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L276
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:276:43
|
276 | ("ball (exact)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L270
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:270:46
|
270 | ("ball (underfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L262
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:262:45
|
262 | ("flat (overfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L254
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:254:43
|
254 | ("flat (exact)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L246
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:246:46
|
246 | ("flat (underfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L240
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:240:33
|
240 | ("no", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
= note: `#[warn(unused_variables)]` on by default
|
unused import: `make_update_plot_data_system`:
demos/src/ui/mod.rs#L24
warning: unused import: `make_update_plot_data_system`
--> demos/src/ui/mod.rs:24:22
|
24 | use self::plotting::{make_update_plot_data_system, plot_source_rolling_update};
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
|
variable does not need to be mutable:
demos/src/bin/shooter_like.rs#L320
warning: variable does not need to be mutable
--> demos/src/bin/shooter_like.rs:320:18
|
320 | |mut cmd, use_collision_groups| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/shooter_like.rs#L298
warning: variable does not need to be mutable
--> demos/src/bin/shooter_like.rs:298:48
|
298 | .with_checkbox("Lock Tilt", true, |mut cmd, lock_tilt| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/shooter_like.rs#L290
warning: variable does not need to be mutable
--> demos/src/bin/shooter_like.rs:290:39
|
290 | ("ball (exact)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/shooter_like.rs#L284
warning: variable does not need to be mutable
--> demos/src/bin/shooter_like.rs:284:42
|
284 | ("ball (underfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/shooter_like.rs#L276
warning: variable does not need to be mutable
--> demos/src/bin/shooter_like.rs:276:41
|
276 | ("flat (overfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/shooter_like.rs#L268
warning: variable does not need to be mutable
--> demos/src/bin/shooter_like.rs:268:39
|
268 | ("flat (exact)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/shooter_like.rs#L260
warning: variable does not need to be mutable
--> demos/src/bin/shooter_like.rs:260:42
|
260 | ("flat (underfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/shooter_like.rs#L254
warning: variable does not need to be mutable
--> demos/src/bin/shooter_like.rs:254:29
|
254 | ("no", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L366
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:366:59
|
366 | cmd.insert(TnuaCrouchEnforcer::new(0.5 * Vector3::Y, |cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `use_collision_groups`:
demos/src/bin/shooter_like.rs#L320
warning: unused variable: `use_collision_groups`
--> demos/src/bin/shooter_like.rs:320:27
|
320 | |mut cmd, use_collision_groups| {
| ^^^^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_use_collision_groups`
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L320
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:320:22
|
320 | |mut cmd, use_collision_groups| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L298
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:298:52
|
298 | .with_checkbox("Lock Tilt", true, |mut cmd, lock_tilt| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L290
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:290:43
|
290 | ("ball (exact)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L284
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:284:46
|
284 | ("ball (underfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L276
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:276:45
|
276 | ("flat (overfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L268
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:268:43
|
268 | ("flat (exact)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L260
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:260:46
|
260 | ("flat (underfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L254
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:254:33
|
254 | ("no", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
= note: `#[warn(unused_variables)]` on by default
|
variable does not need to be mutable:
demos/src/bin/platformer_3d.rs#L306
warning: variable does not need to be mutable
--> demos/src/bin/platformer_3d.rs:306:18
|
306 | |mut cmd, use_collision_groups| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_3d.rs#L284
warning: variable does not need to be mutable
--> demos/src/bin/platformer_3d.rs:284:48
|
284 | .with_checkbox("Lock Tilt", true, |mut cmd, lock_tilt| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_3d.rs#L276
warning: variable does not need to be mutable
--> demos/src/bin/platformer_3d.rs:276:39
|
276 | ("ball (exact)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_3d.rs#L270
warning: variable does not need to be mutable
--> demos/src/bin/platformer_3d.rs:270:42
|
270 | ("ball (underfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_3d.rs#L262
warning: variable does not need to be mutable
--> demos/src/bin/platformer_3d.rs:262:41
|
262 | ("flat (overfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_3d.rs#L254
warning: variable does not need to be mutable
--> demos/src/bin/platformer_3d.rs:254:39
|
254 | ("flat (exact)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_3d.rs#L246
warning: variable does not need to be mutable
--> demos/src/bin/platformer_3d.rs:246:42
|
246 | ("flat (underfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_3d.rs#L240
warning: variable does not need to be mutable
--> demos/src/bin/platformer_3d.rs:240:29
|
240 | ("no", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L352
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:352:59
|
352 | cmd.insert(TnuaCrouchEnforcer::new(0.5 * Vector3::Y, |cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `use_collision_groups`:
demos/src/bin/platformer_3d.rs#L306
warning: unused variable: `use_collision_groups`
--> demos/src/bin/platformer_3d.rs:306:27
|
306 | |mut cmd, use_collision_groups| {
| ^^^^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_use_collision_groups`
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L306
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:306:22
|
306 | |mut cmd, use_collision_groups| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L284
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:284:52
|
284 | .with_checkbox("Lock Tilt", true, |mut cmd, lock_tilt| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L276
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:276:43
|
276 | ("ball (exact)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L270
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:270:46
|
270 | ("ball (underfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L262
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:262:45
|
262 | ("flat (overfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L254
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:254:43
|
254 | ("flat (exact)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L246
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:246:46
|
246 | ("flat (underfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_3d.rs#L240
warning: unused variable: `cmd`
--> demos/src/bin/platformer_3d.rs:240:33
|
240 | ("no", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
= note: `#[warn(unused_variables)]` on by default
|
variable does not need to be mutable:
demos/src/bin/platformer_2d.rs#L280
warning: variable does not need to be mutable
--> demos/src/bin/platformer_2d.rs:280:18
|
280 | |mut cmd, use_collision_groups| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_2d.rs#L261
warning: variable does not need to be mutable
--> demos/src/bin/platformer_2d.rs:261:49
|
261 | .with_checkbox("Lock Tilt", false, |mut cmd, lock_tilt| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_2d.rs#L253
warning: variable does not need to be mutable
--> demos/src/bin/platformer_2d.rs:253:39
|
253 | ("Ball (exact)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_2d.rs#L247
warning: variable does not need to be mutable
--> demos/src/bin/platformer_2d.rs:247:42
|
247 | ("Ball (underfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_2d.rs#L241
warning: variable does not need to be mutable
--> demos/src/bin/platformer_2d.rs:241:41
|
241 | ("flat (overfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_2d.rs#L235
warning: variable does not need to be mutable
--> demos/src/bin/platformer_2d.rs:235:39
|
235 | ("Flat (exact)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_2d.rs#L229
warning: variable does not need to be mutable
--> demos/src/bin/platformer_2d.rs:229:42
|
229 | ("Flat (underfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_2d.rs#L223
warning: variable does not need to be mutable
--> demos/src/bin/platformer_2d.rs:223:32
|
223 | ("Point", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L328
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:328:59
|
328 | cmd.insert(TnuaCrouchEnforcer::new(0.5 * Vector3::Y, |cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `use_collision_groups`:
demos/src/bin/platformer_2d.rs#L280
warning: unused variable: `use_collision_groups`
--> demos/src/bin/platformer_2d.rs:280:27
|
280 | |mut cmd, use_collision_groups| {
| ^^^^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_use_collision_groups`
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L280
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:280:22
|
280 | |mut cmd, use_collision_groups| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L261
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:261:53
|
261 | .with_checkbox("Lock Tilt", false, |mut cmd, lock_tilt| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L253
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:253:43
|
253 | ("Ball (exact)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L247
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:247:46
|
247 | ("Ball (underfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L241
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:241:45
|
241 | ("flat (overfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L235
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:235:43
|
235 | ("Flat (exact)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L229
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:229:46
|
229 | ("Flat (underfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L223
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:223:36
|
223 | ("Point", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
= note: `#[warn(unused_variables)]` on by default
|
variable does not need to be mutable:
demos/src/bin/shooter_like.rs#L320
warning: variable does not need to be mutable
--> demos/src/bin/shooter_like.rs:320:18
|
320 | |mut cmd, use_collision_groups| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/shooter_like.rs#L298
warning: variable does not need to be mutable
--> demos/src/bin/shooter_like.rs:298:48
|
298 | .with_checkbox("Lock Tilt", true, |mut cmd, lock_tilt| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/shooter_like.rs#L290
warning: variable does not need to be mutable
--> demos/src/bin/shooter_like.rs:290:39
|
290 | ("ball (exact)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/shooter_like.rs#L284
warning: variable does not need to be mutable
--> demos/src/bin/shooter_like.rs:284:42
|
284 | ("ball (underfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/shooter_like.rs#L276
warning: variable does not need to be mutable
--> demos/src/bin/shooter_like.rs:276:41
|
276 | ("flat (overfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/shooter_like.rs#L268
warning: variable does not need to be mutable
--> demos/src/bin/shooter_like.rs:268:39
|
268 | ("flat (exact)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/shooter_like.rs#L260
warning: variable does not need to be mutable
--> demos/src/bin/shooter_like.rs:260:42
|
260 | ("flat (underfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/shooter_like.rs#L254
warning: variable does not need to be mutable
--> demos/src/bin/shooter_like.rs:254:29
|
254 | ("no", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L366
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:366:59
|
366 | cmd.insert(TnuaCrouchEnforcer::new(0.5 * Vector3::Y, |cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `use_collision_groups`:
demos/src/bin/shooter_like.rs#L320
warning: unused variable: `use_collision_groups`
--> demos/src/bin/shooter_like.rs:320:27
|
320 | |mut cmd, use_collision_groups| {
| ^^^^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_use_collision_groups`
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L320
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:320:22
|
320 | |mut cmd, use_collision_groups| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L298
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:298:52
|
298 | .with_checkbox("Lock Tilt", true, |mut cmd, lock_tilt| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L290
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:290:43
|
290 | ("ball (exact)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L284
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:284:46
|
284 | ("ball (underfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L276
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:276:45
|
276 | ("flat (overfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L268
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:268:43
|
268 | ("flat (exact)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L260
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:260:46
|
260 | ("flat (underfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/shooter_like.rs#L254
warning: unused variable: `cmd`
--> demos/src/bin/shooter_like.rs:254:33
|
254 | ("no", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
= note: `#[warn(unused_variables)]` on by default
|
variable does not need to be mutable:
demos/src/bin/platformer_2d.rs#L280
warning: variable does not need to be mutable
--> demos/src/bin/platformer_2d.rs:280:18
|
280 | |mut cmd, use_collision_groups| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_2d.rs#L261
warning: variable does not need to be mutable
--> demos/src/bin/platformer_2d.rs:261:49
|
261 | .with_checkbox("Lock Tilt", false, |mut cmd, lock_tilt| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_2d.rs#L253
warning: variable does not need to be mutable
--> demos/src/bin/platformer_2d.rs:253:39
|
253 | ("Ball (exact)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_2d.rs#L247
warning: variable does not need to be mutable
--> demos/src/bin/platformer_2d.rs:247:42
|
247 | ("Ball (underfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_2d.rs#L241
warning: variable does not need to be mutable
--> demos/src/bin/platformer_2d.rs:241:41
|
241 | ("flat (overfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_2d.rs#L235
warning: variable does not need to be mutable
--> demos/src/bin/platformer_2d.rs:235:39
|
235 | ("Flat (exact)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_2d.rs#L229
warning: variable does not need to be mutable
--> demos/src/bin/platformer_2d.rs:229:42
|
229 | ("Flat (underfit)", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
variable does not need to be mutable:
demos/src/bin/platformer_2d.rs#L223
warning: variable does not need to be mutable
--> demos/src/bin/platformer_2d.rs:223:32
|
223 | ("Point", |mut cmd| {
| ----^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L328
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:328:59
|
328 | cmd.insert(TnuaCrouchEnforcer::new(0.5 * Vector3::Y, |cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `use_collision_groups`:
demos/src/bin/platformer_2d.rs#L280
warning: unused variable: `use_collision_groups`
--> demos/src/bin/platformer_2d.rs:280:27
|
280 | |mut cmd, use_collision_groups| {
| ^^^^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_use_collision_groups`
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L280
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:280:22
|
280 | |mut cmd, use_collision_groups| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L261
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:261:53
|
261 | .with_checkbox("Lock Tilt", false, |mut cmd, lock_tilt| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L253
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:253:43
|
253 | ("Ball (exact)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L247
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:247:46
|
247 | ("Ball (underfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L241
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:241:45
|
241 | ("flat (overfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L235
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:235:43
|
235 | ("Flat (exact)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L229
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:229:46
|
229 | ("Flat (underfit)", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
unused variable: `cmd`:
demos/src/bin/platformer_2d.rs#L223
warning: unused variable: `cmd`
--> demos/src/bin/platformer_2d.rs:223:36
|
223 | ("Point", |mut cmd| {
| ^^^ help: if this is intentional, prefix it with an underscore: `_cmd`
|
= note: `#[warn(unused_variables)]` on by default
|
using `clone` on type `ThingToShow` which implements the `Copy` trait:
demos/src/ui/mod.rs#L206
warning: using `clone` on type `ThingToShow` which implements the `Copy` trait
--> demos/src/ui/mod.rs:206:57
|
206 | let mut thing_to_show = ui.memory_mut(|mem| mem.data.get_temp_mut_or_default::<ThingToShow>(thing_to_show_id).clone());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try dereferencing it: `*mem.data.get_temp_mut_or_default::<ThingToShow>(thing_to_show_id)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
= note: `#[warn(clippy::clone_on_copy)]` on by default
|
associated function `make_system` is never used:
demos/src/moving_platform.rs#L63
warning: associated function `make_system` is never used
--> demos/src/moving_platform.rs:63:8
|
54 | impl MovingPlatform {
| ------------------- associated function in this implementation
...
63 | fn make_system<V: Component>(
| ^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
|
unused variable: `setting_from_ui`:
demos/src/ui/mod.rs#L282
warning: unused variable: `setting_from_ui`
--> demos/src/ui/mod.rs:282:5
|
282 | setting_from_ui: Res<DemoUiPhysicsBackendActive>,
| ^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_setting_from_ui`
|
unused variable: `app`:
demos/src/moving_platform.rs#L7
warning: unused variable: `app`
--> demos/src/moving_platform.rs:7:21
|
7 | fn build(&self, app: &mut App) {
| ^^^ help: if this is intentional, prefix it with an underscore: `_app`
|
= note: `#[warn(unused_variables)]` on by default
|
unused import: `make_update_plot_data_system`:
demos/src/ui/mod.rs#L24
warning: unused import: `make_update_plot_data_system`
--> demos/src/ui/mod.rs:24:22
|
24 | use self::plotting::{make_update_plot_data_system, plot_source_rolling_update};
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
|
Clippy
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, actions/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
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions/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
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
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
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
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/
|
Tests (ubuntu-latest, nightly)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, actions/cache@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Tests (ubuntu-latest, nightly)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions/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/
|
Tests (ubuntu-latest, nightly)
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/
|
Tests (ubuntu-latest, nightly)
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/
|
Tests (ubuntu-latest, nightly)
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/
|
Tests (ubuntu-latest, nightly)
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/
|
Tests (ubuntu-latest, 1.76.0)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, actions/cache@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Tests (ubuntu-latest, 1.76.0)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions/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/
|
Tests (ubuntu-latest, 1.76.0)
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/
|
Tests (ubuntu-latest, 1.76.0)
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/
|
Tests (ubuntu-latest, 1.76.0)
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/
|
Tests (ubuntu-latest, 1.76.0)
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/
|
Docs
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, actions/cache@v1, actions-rs/cargo@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Docs
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, actions/cache@v1, actions-rs/cargo@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Docs
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/
|
Docs
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/
|
Docs
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/
|
Docs
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/
|
Docs:
demos/src/ui/mod.rs#L24
unused import: `make_update_plot_data_system`
|
Docs:
demos/src/moving_platform.rs#L7
unused variable: `app`
|
Docs:
demos/src/ui/mod.rs#L282
unused variable: `setting_from_ui`
|
Docs:
demos/src/moving_platform.rs#L63
associated function `make_system` is never used
|
Docs
`tnua-demos-crate` (lib) generated 4 warnings (run `cargo fix --lib -p tnua-demos-crate` to apply 3 suggestions)
|
Docs:
src/builtins/walk.rs#L29
unresolved link to `Self::up`
|
Docs:
src/builtins/walk.rs#L33
unresolved link to `Self::up`
|
Docs:
src/builtins/walk.rs#L46
unresolved link to `Self::up`
|
Docs:
src/builtins/walk.rs#L52
unresolved link to `Self::up`
|
Docs:
src/builtins/walk.rs#L523
unresolved link to `TnuaBuiltinWalk::up`
|
Docs:
demos/src/ui/mod.rs#L24
unused import: `make_update_plot_data_system`
|
Docs:
demos/src/moving_platform.rs#L7
unused variable: `app`
|
Docs:
demos/src/ui/mod.rs#L282
unused variable: `setting_from_ui`
|
Docs:
demos/src/moving_platform.rs#L63
associated function `make_system` is never used
|
Docs
`tnua-demos-crate` (lib) generated 4 warnings (run `cargo fix --lib -p tnua-demos-crate` to apply 3 suggestions)
|
Update Docs and Demos in GitHub Pages
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, jetli/[email protected], actions-rs/toolchain@v1, actions/upload-artifact@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Update Docs and Demos in GitHub Pages
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, jetli/[email protected], actions-rs/toolchain@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Update Docs and Demos in GitHub Pages
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/
|
Update Docs and Demos in GitHub Pages
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/
|
Update Docs and Demos in GitHub Pages
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/
|
Update Docs and Demos in GitHub Pages
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/
|
deploy-ghpages
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/deploy-pages@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
deploy-ghpages
Uploaded artifact size of 1959034880 bytes exceeds the allowed size of 1 GB. Deployment might fail.
|
Deprecation notice: v1, v2, and v3 of the artifact actions
The following artifacts were uploaded using a version of actions/upload-artifact that is scheduled for deprecation: "github-pages".
Please update your workflow to use v4 of the artifact actions.
Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
|