Skip to content

build(deps): bump iced_core from 0.10.0 to 0.12.1 #222

build(deps): bump iced_core from 0.10.0 to 0.12.1

build(deps): bump iced_core from 0.10.0 to 0.12.1 #222

Triggered via pull request February 24, 2024 07:07
Status Failure
Total duration 7m 47s
Artifacts

ci.yml

on: pull_request
clippy-check
1m 3s
clippy-check
format-check
19s
format-check
clippy-check-pr
1m 47s
clippy-check-pr
validate-semantic-commits
9s
validate-semantic-commits
Matrix: run-tests
Fit to window
Zoom out
Zoom in

Annotations

17 errors and 72 warnings
clippy-check
Process completed with exit code 101.
Doctests on ubuntu-latest
Process completed with exit code 101.
Unit tests on macos-latest
Process completed with exit code 101.
the trait bound `impl iced_core::widget::Operation<_>: iced_core::widget::operation::Operation<_>` is not satisfied: src/gui/workout_design/app.rs#L322
error[E0277]: the trait bound `impl iced_core::widget::Operation<_>: iced_core::widget::operation::Operation<_>` is not satisfied --> src/gui/workout_design/app.rs:322:21 | 322 | Command::widget(_focus_id(id)) | --------------- ^^^^^^^^^^^^^ the trait `iced_core::widget::operation::Operation<_>` is not implemented for `impl iced_core::widget::Operation<_>` | | | required by a bound introduced by this call | note: required by a bound in `iced::Command::<T>::widget` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iced_runtime-0.1.1/src/command.rs:37:35 | 37 | pub fn widget(operation: impl widget::Operation<T> + 'static) -> Self { | ^^^^^^^^^^^^^^^^^^^^ required by this bound in `Command::<T>::widget`
the trait bound `iced::Length: std::convert::From<iced_core::Length>` is not satisfied: src/gui/style.rs#L87
error[E0277]: the trait bound `iced::Length: std::convert::From<iced_core::Length>` is not satisfied --> src/gui/style.rs:87:12 | 87 | .width(LARGE_BUTTON) | ----- ^^^^^^^^^^^^ the trait `std::convert::From<iced_core::Length>` is not implemented for `iced::Length` | | | required by a bound introduced by this call | = help: the following other types implement trait `std::convert::From<T>`: <iced::Length as std::convert::From<u16>> <iced::Length as std::convert::From<f32>> <iced::Length as std::convert::From<iced::Pixels>> = note: required for `iced_core::Length` to implement `std::convert::Into<iced::Length>` note: required by a bound in `iced::widget::Button::<'a, Message, Renderer>::width` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iced_widget-0.1.3/src/button.rs:85:40 | 85 | pub fn width(mut self, width: impl Into<Length>) -> Self { | ^^^^^^^^^^^^ required by this bound in `Button::<'a, Message, Renderer>::width`
mismatched types: src/gui/style.rs#L84
error[E0308]: mismatched types --> src/gui/style.rs:84:33 | 84 | .vertical_alignment(iced_core::alignment::Vertical::Center), | ------------------ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `iced::alignment::Vertical`, found `iced_core::alignment::Vertical` | | | arguments to this method are incorrect | = note: `iced_core::alignment::Vertical` and `iced::alignment::Vertical` have similar names, but are actually distinct types note: `iced_core::alignment::Vertical` is defined in crate `iced_core` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iced_core-0.12.1/src/alignment.rs:51:1 | 51 | pub enum Vertical { | ^^^^^^^^^^^^^^^^^ note: `iced::alignment::Vertical` is defined in crate `iced_core` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iced_core-0.10.0/src/alignment.rs:51:1 | 51 | pub enum Vertical { | ^^^^^^^^^^^^^^^^^ = note: perhaps two different versions of crate `iced_core` are being used? note: method defined here --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iced_core-0.10.0/src/widget/text.rs:105:12 | 105 | pub fn vertical_alignment( | ^^^^^^^^^^^^^^^^^^
mismatched types: src/gui/style.rs#L83
error[E0308]: mismatched types --> src/gui/style.rs:83:35 | 83 | .horizontal_alignment(iced_core::alignment::Horizontal::Center) | -------------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `iced::alignment::Horizontal`, found `iced_core::alignment::Horizontal` | | | arguments to this method are incorrect | = note: `iced_core::alignment::Horizontal` and `iced::alignment::Horizontal` have similar names, but are actually distinct types note: `iced_core::alignment::Horizontal` is defined in crate `iced_core` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iced_core-0.12.1/src/alignment.rs:38:1 | 38 | pub enum Horizontal { | ^^^^^^^^^^^^^^^^^^^ note: `iced::alignment::Horizontal` is defined in crate `iced_core` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iced_core-0.10.0/src/alignment.rs:38:1 | 38 | pub enum Horizontal { | ^^^^^^^^^^^^^^^^^^^ = note: perhaps two different versions of crate `iced_core` are being used? note: method defined here --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iced_core-0.10.0/src/widget/text.rs:96:12 | 96 | pub fn horizontal_alignment( | ^^^^^^^^^^^^^^^^^^^^
the trait bound `iced::Length: std::convert::From<iced_core::Length>` is not satisfied: src/gui/workout_design/elements.rs#L195
error[E0277]: the trait bound `iced::Length: std::convert::From<iced_core::Length>` is not satisfied --> src/gui/workout_design/elements.rs:195:49 | 195 | .push(pink_button("Edit").width(style::SMALL_BUTTON).on_press( | ----- ^^^^^^^^^^^^^^^^^^^ the trait `std::convert::From<iced_core::Length>` is not implemented for `iced::Length` | | | required by a bound introduced by this call | = help: the following other types implement trait `std::convert::From<T>`: <iced::Length as std::convert::From<u16>> <iced::Length as std::convert::From<f32>> <iced::Length as std::convert::From<iced::Pixels>> = note: required for `iced_core::Length` to implement `std::convert::Into<iced::Length>` note: required by a bound in `iced::widget::Button::<'a, Message, Renderer>::width` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iced_widget-0.1.3/src/button.rs:85:40 | 85 | pub fn width(mut self, width: impl Into<Length>) -> Self { | ^^^^^^^^^^^^ required by this bound in `Button::<'a, Message, Renderer>::width`
the trait bound `iced::Length: std::convert::From<iced_core::Length>` is not satisfied: src/gui/workout_design/elements.rs#L189
error[E0277]: the trait bound `iced::Length: std::convert::From<iced_core::Length>` is not satisfied --> src/gui/workout_design/elements.rs:189:51 | 189 | .push(pink_button("Delete").width(style::SMALL_BUTTON).on_press( | ----- ^^^^^^^^^^^^^^^^^^^ the trait `std::convert::From<iced_core::Length>` is not implemented for `iced::Length` | | | required by a bound introduced by this call | = help: the following other types implement trait `std::convert::From<T>`: <iced::Length as std::convert::From<u16>> <iced::Length as std::convert::From<f32>> <iced::Length as std::convert::From<iced::Pixels>> = note: required for `iced_core::Length` to implement `std::convert::Into<iced::Length>` note: required by a bound in `iced::widget::Button::<'a, Message, Renderer>::width` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/iced_widget-0.1.3/src/button.rs:85:40 | 85 | pub fn width(mut self, width: impl Into<Length>) -> Self { | ^^^^^^^^^^^^ required by this bound in `Button::<'a, Message, Renderer>::width`
clippy-check-pr
Clippy had exited with the 101 exit code
Integration tests on ubuntu-latest
Process completed with exit code 101.
Unit tests on ubuntu-latest
Process completed with exit code 101.
Integration tests on windows-latest
Process completed with exit code 1.
Doctests on windows-latest
Process completed with exit code 1.
Doctests on macos-latest
Process completed with exit code 101.
Integration tests on macos-latest
Process completed with exit code 101.
Unit tests on windows-latest
Process completed with exit code 1.
format-check
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
format-check
The following actions uses node12 which is deprecated and will be forced to run on node16: 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/
format-check
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/
format-check
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/
format-check
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/
format-check
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-check
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
clippy-check
The following actions uses node12 which is deprecated and will be forced to run on node16: 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/
clippy-check
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-check
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-check
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-check
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/
Doctests on ubuntu-latest
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Doctests on ubuntu-latest
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/
Doctests on ubuntu-latest
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/
Doctests on ubuntu-latest
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/
Doctests on ubuntu-latest
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/
Doctests on ubuntu-latest
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit tests on macos-latest
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Unit tests on macos-latest
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/
Unit tests on macos-latest
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit tests on macos-latest
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit tests on macos-latest
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit tests on macos-latest
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-check-pr
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/toolchain@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-check-pr
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/toolchain@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-check-pr
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-check-pr
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-check-pr
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-check-pr
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/
Integration tests on ubuntu-latest
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Integration tests on ubuntu-latest
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/
Integration tests on ubuntu-latest
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/
Integration tests on ubuntu-latest
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/
Integration tests on ubuntu-latest
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/
Integration tests on ubuntu-latest
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit tests on ubuntu-latest
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Unit tests on ubuntu-latest
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/
Unit tests on ubuntu-latest
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit tests on ubuntu-latest
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit tests on ubuntu-latest
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit tests on ubuntu-latest
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/
Integration tests on windows-latest
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Integration tests on windows-latest
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/
Integration tests on windows-latest
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/
Integration tests on windows-latest
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/
Integration tests on windows-latest
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/
Integration tests on windows-latest
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/
Doctests on windows-latest
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Doctests on windows-latest
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/
Doctests on windows-latest
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/
Doctests on windows-latest
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/
Doctests on windows-latest
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/
Doctests on windows-latest
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/
Doctests on macos-latest
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Doctests on macos-latest
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/
Doctests on macos-latest
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/
Doctests on macos-latest
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/
Doctests on macos-latest
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/
Doctests on macos-latest
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/
Integration tests on macos-latest
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Integration tests on macos-latest
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/
Integration tests on macos-latest
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/
Integration tests on macos-latest
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/
Integration tests on macos-latest
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/
Integration tests on macos-latest
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit tests on windows-latest
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Unit tests on windows-latest
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/
Unit tests on windows-latest
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit tests on windows-latest
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit tests on windows-latest
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Unit tests on windows-latest
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/