Skip to content

Bump borsh to v1

Bump borsh to v1 #375

Triggered via pull request May 14, 2024 18:35
Status Failure
Total duration 1m 25s
Artifacts

rust.yml

on: pull_request
cleanup-runs
7s
cleanup-runs
fmt
13s
fmt
clippy-all-features
46s
clippy-all-features
clippy-no-default-features
47s
clippy-no-default-features
check-each-feature
45s
check-each-feature
test-stable
52s
test-stable
test-build
47s
test-build
doc
1m 13s
doc
publish-dry-run
1m 6s
publish-dry-run
Fit to window
Zoom out
Zoom in

Annotations

36 errors and 69 warnings
failed to resolve: could not find `maybestd` in `borsh`: src/google.rs#L277
error[E0433]: failed to resolve: could not find `maybestd` in `borsh` --> src/google.rs:277:25 | 277 | ) -> borsh::maybestd::io::Result<Self> { | ^^^^^^^^ could not find `maybestd` in `borsh` | help: consider importing one of these items | 236 + use borsh::io; | 236 + use std::io; | help: if you import `io`, refer to it directly | 277 - ) -> borsh::maybestd::io::Result<Self> { 277 + ) -> io::Result<Self> { |
failed to resolve: could not find `maybestd` in `borsh`: src/google.rs#L275
error[E0433]: failed to resolve: could not find `maybestd` in `borsh` --> src/google.rs:275:45 | 275 | fn deserialize_reader<R: borsh::maybestd::io::Read>( | ^^^^^^^^ could not find `maybestd` in `borsh` | help: consider importing one of these items | 236 + use borsh::io; | 236 + use std::io; | help: if you import `io`, refer to it directly | 275 - fn deserialize_reader<R: borsh::maybestd::io::Read>( 275 + fn deserialize_reader<R: io::Read>( |
failed to resolve: could not find `maybestd` in `borsh`: src/google.rs#L263
error[E0433]: failed to resolve: could not find `maybestd` in `borsh` --> src/google.rs:263:25 | 263 | ) -> borsh::maybestd::io::Result<()> { | ^^^^^^^^ could not find `maybestd` in `borsh` | help: consider importing one of these items | 236 + use borsh::io; | 236 + use std::io; | help: if you import `io`, refer to it directly | 263 - ) -> borsh::maybestd::io::Result<()> { 263 + ) -> io::Result<()> { |
failed to resolve: could not find `maybestd` in `borsh`: src/google.rs#L260
error[E0433]: failed to resolve: could not find `maybestd` in `borsh` --> src/google.rs:260:36 | 260 | fn serialize<W: borsh::maybestd::io::Write>( | ^^^^^^^^ could not find `maybestd` in `borsh` | help: consider importing one of these items | 236 + use borsh::io; | 236 + use std::io; | help: if you import `io`, refer to it directly | 260 - fn serialize<W: borsh::maybestd::io::Write>( 260 + fn serialize<W: io::Write>( |
failed to resolve: could not find `maybestd` in `borsh`: src/google.rs#L277
error[E0433]: failed to resolve: could not find `maybestd` in `borsh` --> src/google.rs:277:25 | 277 | ) -> borsh::maybestd::io::Result<Self> { | ^^^^^^^^ could not find `maybestd` in `borsh` | help: consider importing one of these items | 236 + use borsh::io; | 236 + use std::io; | help: if you import `io`, refer to it directly | 277 - ) -> borsh::maybestd::io::Result<Self> { 277 + ) -> io::Result<Self> { |
failed to resolve: could not find `maybestd` in `borsh`: src/google.rs#L275
error[E0433]: failed to resolve: could not find `maybestd` in `borsh` --> src/google.rs:275:45 | 275 | fn deserialize_reader<R: borsh::maybestd::io::Read>( | ^^^^^^^^ could not find `maybestd` in `borsh` | help: consider importing one of these items | 236 + use borsh::io; | 236 + use std::io; | help: if you import `io`, refer to it directly | 275 - fn deserialize_reader<R: borsh::maybestd::io::Read>( 275 + fn deserialize_reader<R: io::Read>( |
failed to resolve: could not find `maybestd` in `borsh`: src/google.rs#L263
error[E0433]: failed to resolve: could not find `maybestd` in `borsh` --> src/google.rs:263:25 | 263 | ) -> borsh::maybestd::io::Result<()> { | ^^^^^^^^ could not find `maybestd` in `borsh` | help: consider importing one of these items | 236 + use borsh::io; | 236 + use std::io; | help: if you import `io`, refer to it directly | 263 - ) -> borsh::maybestd::io::Result<()> { 263 + ) -> io::Result<()> { |
failed to resolve: could not find `maybestd` in `borsh`: src/google.rs#L260
error[E0433]: failed to resolve: could not find `maybestd` in `borsh` --> src/google.rs:260:36 | 260 | fn serialize<W: borsh::maybestd::io::Write>( | ^^^^^^^^ could not find `maybestd` in `borsh` | help: consider importing one of these items | 236 + use borsh::io; | 236 + use std::io; | help: if you import `io`, refer to it directly | 260 - fn serialize<W: borsh::maybestd::io::Write>( 260 + fn serialize<W: io::Write>( |
failed to resolve: could not find `BorshDeserialize` in `borsh`: src/google.rs#L251
error[E0433]: failed to resolve: could not find `BorshDeserialize` in `borsh` --> src/google.rs:251:50 | 251 | derive(borsh::BorshSerialize, borsh::BorshDeserialize) | ^^^^^^^^^^^^^^^^ could not find `BorshDeserialize` in `borsh` | note: found an item that was configured out --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/borsh-1.5.0/src/lib.rs:82:24 | 82 | pub use borsh_derive::{BorshDeserialize, BorshSerialize}; | ^^^^^^^^^^^^^^^^ = note: the item is gated behind the `derive` feature
failed to resolve: could not find `BorshSerialize` in `borsh`: src/google.rs#L251
error[E0433]: failed to resolve: could not find `BorshSerialize` in `borsh` --> src/google.rs:251:27 | 251 | derive(borsh::BorshSerialize, borsh::BorshDeserialize) | ^^^^^^^^^^^^^^ could not find `BorshSerialize` in `borsh` | note: found an item that was configured out --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/borsh-1.5.0/src/lib.rs:82:42 | 82 | pub use borsh_derive::{BorshDeserialize, BorshSerialize}; | ^^^^^^^^^^^^^^ = note: the item is gated behind the `derive` feature
failed to resolve: could not find `BorshDeserialize` in `borsh`: src/google.rs#L251
error[E0433]: failed to resolve: could not find `BorshDeserialize` in `borsh` --> src/google.rs:251:50 | 251 | derive(borsh::BorshSerialize, borsh::BorshDeserialize) | ^^^^^^^^^^^^^^^^ could not find `BorshDeserialize` in `borsh` | note: found an item that was configured out --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/borsh-1.5.0/src/lib.rs:82:24 | 82 | pub use borsh_derive::{BorshDeserialize, BorshSerialize}; | ^^^^^^^^^^^^^^^^ = note: the item is gated behind the `derive` feature
failed to resolve: could not find `BorshSerialize` in `borsh`: src/google.rs#L251
error[E0433]: failed to resolve: could not find `BorshSerialize` in `borsh` --> src/google.rs:251:27 | 251 | derive(borsh::BorshSerialize, borsh::BorshDeserialize) | ^^^^^^^^^^^^^^ could not find `BorshSerialize` in `borsh` | note: found an item that was configured out --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/borsh-1.5.0/src/lib.rs:82:42 | 82 | pub use borsh_derive::{BorshDeserialize, BorshSerialize}; | ^^^^^^^^^^^^^^ = note: the item is gated behind the `derive` feature
check-each-feature
Process completed with exit code 1.
clippy-all-features
Clippy had exited with the 101 exit code
test-build: src/google.rs#L251
failed to resolve: could not find `BorshSerialize` in `borsh`
test-build: src/google.rs#L251
failed to resolve: could not find `BorshDeserialize` in `borsh`
test-build: src/google.rs#L260
failed to resolve: could not find `maybestd` in `borsh`
test-build: src/google.rs#L263
failed to resolve: could not find `maybestd` in `borsh`
test-build: src/google.rs#L275
failed to resolve: could not find `maybestd` in `borsh`
test-build: src/google.rs#L277
failed to resolve: could not find `maybestd` in `borsh`
test-build
The process '/home/runner/.cargo/bin/cargo' failed with exit code 101
test-stable: src/google.rs#L251
failed to resolve: could not find `BorshSerialize` in `borsh`
test-stable: src/google.rs#L251
failed to resolve: could not find `BorshDeserialize` in `borsh`
test-stable: src/google.rs#L260
failed to resolve: could not find `maybestd` in `borsh`
test-stable: src/google.rs#L263
failed to resolve: could not find `maybestd` in `borsh`
test-stable: src/google.rs#L275
failed to resolve: could not find `maybestd` in `borsh`
test-stable: src/google.rs#L277
failed to resolve: could not find `maybestd` in `borsh`
test-stable
could not compile `ibc-proto` (lib) due to 6 previous errors
test-stable
The process '/home/runner/.cargo/bin/cargo' failed with exit code 101
doc: src/google.rs#L251
failed to resolve: could not find `BorshSerialize` in `borsh`
doc: src/google.rs#L251
failed to resolve: could not find `BorshDeserialize` in `borsh`
doc: src/google.rs#L260
failed to resolve: could not find `maybestd` in `borsh`
doc: src/google.rs#L263
failed to resolve: could not find `maybestd` in `borsh`
doc: src/google.rs#L275
failed to resolve: could not find `maybestd` in `borsh`
doc: src/google.rs#L277
failed to resolve: could not find `maybestd` in `borsh`
doc
The process '/home/runner/.cargo/bin/cargo' failed with exit code 101
fmt
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/.
fmt
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/
fmt
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/
fmt
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/
fmt
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/
fmt
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/
check-each-feature
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
check-each-feature
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
check-each-feature
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
check-each-feature
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
check-each-feature
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/
check-each-feature
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/
check-each-feature
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/
check-each-feature
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/
check-each-feature
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-all-features
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
clippy-all-features
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
clippy-all-features
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-all-features
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-all-features
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-all-features
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-all-features
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy-all-features
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy-all-features
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-no-default-features
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
clippy-no-default-features
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-cache@v1, actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
clippy-no-default-features
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-no-default-features
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-no-default-features
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-no-default-features
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-no-default-features
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy-no-default-features
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
clippy-no-default-features
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-build
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-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/.
test-build
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-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/
test-build
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-build
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-build
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-build
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-build
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-build
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-build
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-stable
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-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/.
test-stable
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-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/
test-stable
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-stable
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-stable
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-stable
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-stable
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-stable
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
test-stable
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/
publish-dry-run
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-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/.
publish-dry-run
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-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/
publish-dry-run
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
publish-dry-run
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
publish-dry-run
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/
publish-dry-run
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/
publish-dry-run
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/
publish-dry-run
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/
publish-dry-run
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/
doc
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-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/.
doc
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/toolchain@v1, Swatinem/rust-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/
doc
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
doc
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
doc
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/
doc
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/
doc
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/
doc
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/
doc
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/