BLAKE3-team / BLAKE3

the official Rust and C implementations of the BLAKE3 cryptographic hash function
Apache License 2.0
4.71k stars 315 forks source link

replace unmaintained actions-rs/toolchain action in CI #368

Closed striezel closed 6 months ago

striezel commented 6 months ago

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/BLAKE3-team/BLAKE3/actions/runs/7144895807:

The following action 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.

oconnor663 commented 6 months ago

Awesome, this is my first time seeing that project. I'll merge anything with dtolnay in the name :) Thanks!