Allow serializing &T as Bincoded<T> #17
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
Annotations
70 errors and 84 warnings
test (nightly, fixed16)
The process '/home/runner/.cargo/bin/cargo' failed with exit code 101
|
test (nightly, fixed32, ,derive)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed32, ,derive)
The process '/home/runner/.cargo/bin/cargo' failed with exit code 101
|
test (nightly, fixed16, ,std, ,derive, ,bincoded)
The operation was canceled.
|
test (nightly, fixed16, ,derive)
The process '/home/runner/.cargo/bin/cargo' failed with exit code 101
|
test (stable, fixed16, ,derive)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed64, ,std)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed32, ,derive, ,bincoded)
The process '/home/runner/.cargo/bin/cargo' failed with exit code 101
|
test (nightly, fixed8, ,std, ,derive, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed8, ,std, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed32)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed8, ,derive)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed8, ,std, ,derive)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed8, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed8, ,std)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed8)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed64)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed8, ,derive, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed64, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed64, ,std, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed64, ,std)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed64, ,derive, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed64, ,std, ,derive)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed64, ,derive)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed16, ,derive, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed64, ,derive)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed16)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed16, ,std)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed64, ,std, ,derive, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed32, ,std)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed64, ,std, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed32, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed32, ,std, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed32, ,std, ,derive)
The operation was canceled.
|
test (stable, fixed32, ,std, ,derive)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed32, ,std, ,derive, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed8)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed32, ,derive)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed16, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed16, ,std, ,derive, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed16, ,std, ,derive)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed64, ,std, ,derive, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed64, ,std, ,derive)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed32, ,derive, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
explicit call to `.into_iter()` in function argument accepting `IntoIterator`:
proc/src/serialize.rs#L455
error: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
--> proc/src/serialize.rs:455:36
|
455 | generics.params.extend(cfg.generics.params.into_iter());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing the `.into_iter()`: `cfg.generics.params`
|
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
--> /rustc/5680fa18feaa87f3ff04063800aec256c3d4b4be/library/core/src/iter/traits/collect.rs:377:18
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
|
explicit call to `.into_iter()` in function argument accepting `IntoIterator`:
proc/src/serialize.rs#L243
error: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
--> proc/src/serialize.rs:243:36
|
243 | generics.params.extend(cfg.generics.params.into_iter());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing the `.into_iter()`: `cfg.generics.params`
|
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
--> /rustc/5680fa18feaa87f3ff04063800aec256c3d4b4be/library/core/src/iter/traits/collect.rs:377:18
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
|
explicit call to `.into_iter()` in function argument accepting `IntoIterator`:
proc/src/deserialize.rs#L348
error: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
--> proc/src/deserialize.rs:348:25
|
348 | .extend(cfg.generics.params.into_iter());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing the `.into_iter()`: `cfg.generics.params`
|
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
--> /rustc/5680fa18feaa87f3ff04063800aec256c3d4b4be/library/core/src/iter/traits/collect.rs:377:18
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
|
explicit call to `.into_iter()` in function argument accepting `IntoIterator`:
proc/src/deserialize.rs#L190
error: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
--> proc/src/deserialize.rs:190:25
|
190 | .extend(cfg.generics.params.into_iter());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing the `.into_iter()`: `cfg.generics.params`
|
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
--> /rustc/5680fa18feaa87f3ff04063800aec256c3d4b4be/library/core/src/iter/traits/collect.rs:377:18
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
= note: `-D clippy::useless-conversion` implied by `-D warnings`
|
test (stable, fixed16, ,std, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed8, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed8, ,std)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed8, ,std, ,derive, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed8, ,derive)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed32, ,std, ,derive, ,bincoded)
The operation was canceled.
|
test (stable, fixed8, ,std, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed8, ,derive, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (stable, fixed8, ,std, ,derive)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed16, ,std, ,bincoded)
The operation was canceled.
|
test (nightly, fixed16, ,derive, ,bincoded)
The operation was canceled.
|
test (nightly, fixed64, ,derive, ,bincoded)
The job was canceled because "nightly_fixed16" failed.
|
test (nightly, fixed64, ,derive, ,bincoded)
The operation was canceled.
|
test (nightly, fixed32, ,std)
The operation was canceled.
|
test (nightly, fixed32, ,std, ,bincoded)
The operation was canceled.
|
test (nightly, fixed64)
The operation was canceled.
|
test (nightly, fixed16, ,std)
The operation was canceled.
|
test (nightly, fixed32)
The operation was canceled.
|
test (nightly, fixed64, ,bincoded)
The operation was canceled.
|
test (nightly, fixed32, ,bincoded)
The operation was canceled.
|
test (nightly, fixed16, ,std, ,derive)
The operation was canceled.
|
test (nightly, fixed16, ,bincoded)
The operation was canceled.
|
test (nightly, fixed16)
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/
|
test (nightly, fixed16)
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/
|
test (nightly, fixed16)
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/
|
test (nightly, fixed16)
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/
|
test (nightly, fixed16)
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/
|
test (nightly, fixed32, ,derive)
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/
|
test (nightly, fixed32, ,derive)
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/
|
test (nightly, fixed32, ,derive)
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/
|
test (nightly, fixed32, ,derive)
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/
|
test (nightly, fixed32, ,derive)
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/
|
test (nightly, fixed16, ,std, ,derive, ,bincoded)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, 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/
|
test (nightly, fixed16, ,std, ,derive, ,bincoded)
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/
|
test (nightly, fixed16, ,std, ,derive, ,bincoded)
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/
|
test (nightly, fixed16, ,derive)
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/
|
test (nightly, fixed16, ,derive)
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/
|
test (nightly, fixed16, ,derive)
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/
|
test (nightly, fixed16, ,derive)
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/
|
test (nightly, fixed16, ,derive)
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/
|
test (nightly, fixed32, ,derive, ,bincoded)
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/
|
test (nightly, fixed32, ,derive, ,bincoded)
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/
|
test (nightly, fixed32, ,derive, ,bincoded)
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/
|
test (nightly, fixed32, ,derive, ,bincoded)
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/
|
test (nightly, fixed32, ,derive, ,bincoded)
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/
|
test (nightly, fixed32, ,std, ,derive)
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/
|
test (nightly, fixed32, ,std, ,derive)
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/
|
test (nightly, fixed32, ,std, ,derive)
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/
|
test (nightly, fixed32, ,std, ,derive)
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/
|
test (nightly, fixed32, ,std, ,derive)
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/
|
test (nightly, fixed32, ,std, ,derive, ,bincoded)
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/
|
test (nightly, fixed32, ,std, ,derive, ,bincoded)
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/
|
test (nightly, fixed32, ,std, ,derive, ,bincoded)
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/
|
test (nightly, fixed32, ,std, ,derive, ,bincoded)
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/
|
test (nightly, fixed32, ,std, ,derive, ,bincoded)
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/
|
test (nightly, fixed16, ,std, ,bincoded)
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/
|
test (nightly, fixed16, ,std, ,bincoded)
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/
|
test (nightly, fixed16, ,std, ,bincoded)
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/
|
test (nightly, fixed16, ,std, ,bincoded)
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/
|
test (nightly, fixed16, ,std, ,bincoded)
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/
|
test (nightly, fixed16, ,derive, ,bincoded)
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/
|
test (nightly, fixed16, ,derive, ,bincoded)
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/
|
test (nightly, fixed16, ,derive, ,bincoded)
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/
|
test (nightly, fixed16, ,derive, ,bincoded)
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/
|
test (nightly, fixed16, ,derive, ,bincoded)
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/
|
test (nightly, fixed32, ,std)
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/
|
test (nightly, fixed32, ,std)
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/
|
test (nightly, fixed32, ,std)
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/
|
test (nightly, fixed32, ,std)
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/
|
test (nightly, fixed32, ,std)
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/
|
test (nightly, fixed32, ,std, ,bincoded)
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/
|
test (nightly, fixed32, ,std, ,bincoded)
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/
|
test (nightly, fixed32, ,std, ,bincoded)
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/
|
test (nightly, fixed32, ,std, ,bincoded)
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/
|
test (nightly, fixed32, ,std, ,bincoded)
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/
|
test (nightly, fixed64)
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/
|
test (nightly, fixed64)
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/
|
test (nightly, fixed64)
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/
|
test (nightly, fixed64)
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/
|
test (nightly, fixed64)
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/
|
test (nightly, fixed16, ,std)
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/
|
test (nightly, fixed64, ,bincoded)
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/
|
test (nightly, fixed64, ,bincoded)
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/
|
test (nightly, fixed16, ,std)
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/
|
test (nightly, fixed64, ,bincoded)
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/
|
test (nightly, fixed64, ,bincoded)
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/
|
test (nightly, fixed32)
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, 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/
|
test (nightly, fixed16, ,std)
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/
|
test (nightly, fixed64, ,bincoded)
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/
|
test (nightly, fixed16, ,std)
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/
|
test (nightly, fixed16, ,std)
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/
|
test (nightly, fixed32, ,bincoded)
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/
|
test (nightly, fixed32, ,bincoded)
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/
|
test (nightly, fixed32, ,bincoded)
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/
|
test (nightly, fixed16, ,std, ,derive)
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/
|
test (nightly, fixed32, ,bincoded)
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/
|
test (nightly, fixed32, ,bincoded)
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/
|
test (nightly, fixed16, ,std, ,derive)
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/
|
test (nightly, fixed16, ,std, ,derive)
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/
|
test (nightly, fixed16, ,std, ,derive)
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/
|
test (nightly, fixed16, ,std, ,derive)
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/
|
test (nightly, fixed16, ,bincoded)
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/
|
test (nightly, fixed16, ,bincoded)
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/
|
test (nightly, fixed16, ,bincoded)
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/
|
test (nightly, fixed16, ,bincoded)
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/
|
test (nightly, fixed16, ,bincoded)
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/
|