setup-rust-toolchain
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:...