polyphony-chat / chorus

A rust library for interacting with multiple Spacebar-compatible Instances at once.
https://crates.io/crates/chorus
Mozilla Public License 2.0
16 stars 7 forks source link

Replace unmaintained actions-rs/toolchain by dtolnay/rust-toolchain #473

Closed striezel closed 5 months ago

striezel commented 5 months ago

This replaces the unmaintained actions-rs/toolchain by dtolnay/rust-toolchain.

Basically all of the actions-rs/* actions are unmaintained. See https://github.com/actions-rs/toolchain/issues/216 for more information. Due to their age they generate several warnings in CI runs, for example in https://github.com/polyphony-chat/chorus/actions/runs/7647051419:

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/

To get rid of those warnings the occurrences of actions-rs/toolchain are replaced by dtolnay/rust-toolchain.

kozabrada123 commented 5 months ago

Looks good, thank you!