setup-rust-toolchain
                                
                                 setup-rust-toolchain copied to clipboard
                                
                                    setup-rust-toolchain copied to clipboard
                            
                            
                            
                        Setup a specific Rust toolchain with extra features like problem matchers
This action has one significant difference to https://github.com/actions-rs/toolchain in that it defaults to overriding the toolchain, whereas the old action only does that if `override: true` is set. It would...
Our github enterprise has no access to github.com. This action `action.yml` includes the following action: uses: Swatinem/rust-cache@v2 However, even with `cache: false`: ``` - uses: ourenterprise/thirdparty.setup-rust-toolchain@v1 with: components: rustfmt cache:...
See https://github.com/dtolnay/rust-toolchain/pull/94 for context.
If I include multiple uses of `actions-rust-lang/setup-rust-toolchain` in the same workflow job (to install two different Rust versions), when run on macOS, a warning about `bash` already being installed is...
When using this action in multiple matrix jobs in the same workflow, the generated cache key is the same for all of them, because they all get the same job...
I'm building a Tauri app on a self-hosted Windows runner. Here's the relevant bit of the action yaml: ```yaml name: 'publish' on: push: branches: - release jobs: publish-tauri: permissions: contents:...
Awesome gh action! But one thing could be better as I feel. The default behavior in complex pipelines can easy turn every pipeline into red. At first glance it seems,...
Our rust code doesn't live in the root folder because the project contains both JS and Rust code, making it impossible for the action to pick up our rust-toolchain.toml file....