Merge pull request #80 from Person-93/deprecate-io-bundles #310
ci.yml
on: push
Matrix: Tests
Update Docs and Demos in GitHub Pages
18m 55s
Rustfmt
13s
CI
1s
deploy-ghpages
1m 35s
Annotations
65 warnings
Docs
Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/cache@v1. Please update your workflow to use either v3 or v4 of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down
|
Tests (ubuntu-latest, 1.83.0)
Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/cache@v1. Please update your workflow to use either v3 or v4 of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down
|
Tests (ubuntu-latest, nightly)
Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/cache@v1. Please update your workflow to use either v3 or v4 of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down
|
Clippy
Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/cache@v1. Please update your workflow to use either v3 or v4 of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down
|
Rustfmt
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
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/
|
this `map_or` is redundant:
demos/src/bin/shooter_like.rs#L422
warning: this `map_or` is redundant
--> demos/src/bin/shooter_like.rs:422:33
|
422 | let mouse_controls_camera = primary_window_query
| _________________________________^
423 | | .get_single()
424 | | .map_or(false, |w| !w.cursor_options.visible);
| |_____________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
= note: `#[warn(clippy::unnecessary_map_or)]` on by default
help: use is_ok_and instead
|
422 ~ let mouse_controls_camera = primary_window_query
423 ~ .get_single().is_ok_and(|w| !w.cursor_options.visible);
|
|
this `map_or` is redundant:
demos/src/bin/shooter_like.rs#L422
warning: this `map_or` is redundant
--> demos/src/bin/shooter_like.rs:422:33
|
422 | let mouse_controls_camera = primary_window_query
| _________________________________^
423 | | .get_single()
424 | | .map_or(false, |w| !w.cursor_options.visible);
| |_____________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
= note: `#[warn(clippy::unnecessary_map_or)]` on by default
help: use is_ok_and instead
|
422 ~ let mouse_controls_camera = primary_window_query
423 ~ .get_single().is_ok_and(|w| !w.cursor_options.visible);
|
|
this `map_or` is redundant:
src/controller.rs#L187
warning: this `map_or` is redundant
--> src/controller.rs:187:24
|
187 | && entry
| ________________________^
188 | | .get()
189 | | .rescheduled_in
190 | | .as_ref()
191 | | .map_or(false, |timer| timer.finished())
| |________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
help: use is_some_and instead
|
187 ~ && entry
188 + .get()
189 + .rescheduled_in
190 + .as_ref().is_some_and(|timer| timer.finished())
|
|
this `map_or` is redundant:
src/control_helpers/air_actions_tracking.rs#L41
warning: this `map_or` is redundant
--> src/control_helpers/air_actions_tracking.rs:41:20
|
41 | if controller
| ____________________^
42 | | .dynamic_action()
43 | | .map_or(false, |action| action.violates_coyote_time())
| |__________________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
help: use is_some_and instead
|
41 ~ if controller
42 + .dynamic_action().is_some_and(|action| action.violates_coyote_time())
|
|
this `map_or` is redundant:
src/control_helpers/air_actions_tracking.rs#L22
warning: this `map_or` is redundant
--> src/control_helpers/air_actions_tracking.rs:22:20
|
22 | if controller
| ____________________^
23 | | .dynamic_action()
24 | | .map_or(false, |action| action.violates_coyote_time())
| |__________________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
help: use is_some_and instead
|
22 ~ if controller
23 + .dynamic_action().is_some_and(|action| action.violates_coyote_time())
|
|
this `map_or` is redundant:
src/builtins/jump.rs#L296
warning: this `map_or` is redundant
--> src/builtins/jump.rs:296:34
|
296 | let landed = ctx
| __________________________________^
297 | | .basis
298 | | .displacement()
299 | | .map_or(false, |displacement| displacement.dot(up) <= 0.0);
| |__________________________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
help: use is_some_and instead
|
296 ~ let landed = ctx
297 + .basis
298 ~ .displacement().is_some_and(|displacement| displacement.dot(up) <= 0.0);
|
|
this `map_or` is redundant:
src/animating_helper.rs#L117
warning: this `map_or` is redundant
--> src/animating_helper.rs:117:23
|
117 | let is_same = self
| _______________________^
118 | | .state
119 | | .as_ref()
120 | | .map_or(false, |old_state| comparison(old_state, &new_state));
| |_________________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
= note: `#[warn(clippy::unnecessary_map_or)]` on by default
help: use is_some_and instead
|
117 ~ let is_same = self
118 + .state
119 ~ .as_ref().is_some_and(|old_state| comparison(old_state, &new_state));
|
|
use of deprecated struct `TnuaRapier2dIOBundle`: All uses can be safely removed, components are added via bevy's required components:
rapier2d/src/lib.rs#L79
warning: use of deprecated struct `TnuaRapier2dIOBundle`: All uses can be safely removed, components are added via bevy's required components
--> rapier2d/src/lib.rs:79:12
|
79 | pub struct TnuaRapier2dIOBundle {
| ^^^^^^^^^^^^^^^^^^^^
|
use of deprecated struct `TnuaRapier2dIOBundle`: All uses can be safely removed, components are added via bevy's required components:
rapier2d/src/lib.rs#L79
warning: use of deprecated struct `TnuaRapier2dIOBundle`: All uses can be safely removed, components are added via bevy's required components
--> rapier2d/src/lib.rs:79:12
|
79 | pub struct TnuaRapier2dIOBundle {
| ^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
|
use of deprecated struct `TnuaRapier3dIOBundle`: All uses can be safely removed, components are added via bevy's required components:
rapier3d/src/lib.rs#L79
warning: use of deprecated struct `TnuaRapier3dIOBundle`: All uses can be safely removed, components are added via bevy's required components
--> rapier3d/src/lib.rs:79:12
|
79 | pub struct TnuaRapier3dIOBundle {
| ^^^^^^^^^^^^^^^^^^^^
|
use of deprecated struct `TnuaRapier3dIOBundle`: All uses can be safely removed, components are added via bevy's required components:
rapier3d/src/lib.rs#L79
warning: use of deprecated struct `TnuaRapier3dIOBundle`: All uses can be safely removed, components are added via bevy's required components
--> rapier3d/src/lib.rs:79:12
|
79 | pub struct TnuaRapier3dIOBundle {
| ^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
|
use of deprecated struct `TnuaRapier3dIOBundle`: All uses can be safely removed, components are added via bevy's required components:
rapier3d/src/lib.rs#L79
warning: use of deprecated struct `TnuaRapier3dIOBundle`: All uses can be safely removed, components are added via bevy's required components
--> rapier3d/src/lib.rs:79:12
|
79 | pub struct TnuaRapier3dIOBundle {
| ^^^^^^^^^^^^^^^^^^^^
|
use of deprecated struct `TnuaRapier3dIOBundle`: All uses can be safely removed, components are added via bevy's required components:
rapier3d/src/lib.rs#L79
warning: use of deprecated struct `TnuaRapier3dIOBundle`: All uses can be safely removed, components are added via bevy's required components
--> rapier3d/src/lib.rs:79:12
|
79 | pub struct TnuaRapier3dIOBundle {
| ^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
|
use of deprecated struct `TnuaRapier2dIOBundle`: All uses can be safely removed, components are added via bevy's required components:
rapier2d/src/lib.rs#L79
warning: use of deprecated struct `TnuaRapier2dIOBundle`: All uses can be safely removed, components are added via bevy's required components
--> rapier2d/src/lib.rs:79:12
|
79 | pub struct TnuaRapier2dIOBundle {
| ^^^^^^^^^^^^^^^^^^^^
|
use of deprecated struct `TnuaRapier2dIOBundle`: All uses can be safely removed, components are added via bevy's required components:
rapier2d/src/lib.rs#L79
warning: use of deprecated struct `TnuaRapier2dIOBundle`: All uses can be safely removed, components are added via bevy's required components
--> rapier2d/src/lib.rs:79:12
|
79 | pub struct TnuaRapier2dIOBundle {
| ^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
|
this `map_or` is redundant:
src/controller.rs#L187
warning: this `map_or` is redundant
--> src/controller.rs:187:24
|
187 | && entry
| ________________________^
188 | | .get()
189 | | .rescheduled_in
190 | | .as_ref()
191 | | .map_or(false, |timer| timer.finished())
| |________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
help: use is_some_and instead
|
187 ~ && entry
188 + .get()
189 + .rescheduled_in
190 + .as_ref().is_some_and(|timer| timer.finished())
|
|
this `map_or` is redundant:
src/control_helpers/air_actions_tracking.rs#L41
warning: this `map_or` is redundant
--> src/control_helpers/air_actions_tracking.rs:41:20
|
41 | if controller
| ____________________^
42 | | .dynamic_action()
43 | | .map_or(false, |action| action.violates_coyote_time())
| |__________________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
help: use is_some_and instead
|
41 ~ if controller
42 + .dynamic_action().is_some_and(|action| action.violates_coyote_time())
|
|
this `map_or` is redundant:
src/control_helpers/air_actions_tracking.rs#L22
warning: this `map_or` is redundant
--> src/control_helpers/air_actions_tracking.rs:22:20
|
22 | if controller
| ____________________^
23 | | .dynamic_action()
24 | | .map_or(false, |action| action.violates_coyote_time())
| |__________________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
help: use is_some_and instead
|
22 ~ if controller
23 + .dynamic_action().is_some_and(|action| action.violates_coyote_time())
|
|
this `map_or` is redundant:
src/builtins/jump.rs#L296
warning: this `map_or` is redundant
--> src/builtins/jump.rs:296:34
|
296 | let landed = ctx
| __________________________________^
297 | | .basis
298 | | .displacement()
299 | | .map_or(false, |displacement| displacement.dot(up) <= 0.0);
| |__________________________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
help: use is_some_and instead
|
296 ~ let landed = ctx
297 + .basis
298 ~ .displacement().is_some_and(|displacement| displacement.dot(up) <= 0.0);
|
|
this `map_or` is redundant:
src/builtins/jump.rs#L270
warning: this `map_or` is redundant
--> src/builtins/jump.rs:270:38
|
270 | let landed = ctx
| ______________________________________^
271 | | .basis
272 | | .displacement()
273 | | .map_or(false, |displacement| displacement.dot(up) <= 0.0);
| |______________________________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
help: use is_some_and instead
|
270 ~ let landed = ctx
271 + .basis
272 ~ .displacement().is_some_and(|displacement| displacement.dot(up) <= 0.0);
|
|
this `map_or` is redundant:
src/animating_helper.rs#L117
warning: this `map_or` is redundant
--> src/animating_helper.rs:117:23
|
117 | let is_same = self
| _______________________^
118 | | .state
119 | | .as_ref()
120 | | .map_or(false, |old_state| comparison(old_state, &new_state));
| |_________________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
= note: `#[warn(clippy::unnecessary_map_or)]` on by default
help: use is_some_and instead
|
117 ~ let is_same = self
118 + .state
119 ~ .as_ref().is_some_and(|old_state| comparison(old_state, &new_state));
|
|
Tests (ubuntu-latest, nightly)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
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.83.0)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Tests (ubuntu-latest, 1.83.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.83.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.83.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.83.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/
|
Clippy
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
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/
|
Docs
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
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:
rapier2d/src/lib.rs#L79
use of deprecated struct `TnuaRapier2dIOBundle`: All uses can be safely removed, components are added via bevy's required components
|
Docs:
rapier2d/src/lib.rs#L79
use of deprecated struct `TnuaRapier2dIOBundle`: All uses can be safely removed, components are added via bevy's required components
|
Docs:
rapier3d/src/lib.rs#L79
use of deprecated struct `TnuaRapier3dIOBundle`: All uses can be safely removed, components are added via bevy's required components
|
Docs:
rapier3d/src/lib.rs#L79
use of deprecated struct `TnuaRapier3dIOBundle`: All uses can be safely removed, components are added via bevy's required components
|
Docs
`bevy-tnua-rapier2d` (lib) generated 2 warnings
|
Docs
`bevy-tnua-rapier3d` (lib) generated 2 warnings
|
CI
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Update Docs and Demos in GitHub Pages
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
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
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
deploy-ghpages
Uploaded artifact size of 2093250560 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/
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
github-pages
Expired
|
1.95 GB |
|