Concise GitHub Action for installing a Rust toolchain
Find a file
David Tolnay b3b07ba8b4
Some checks are pending
CI / Rust 1.62.0 on macos-latest (push) Waiting to run
CI / Rust beta on macos-latest (push) Waiting to run
CI / Rust nightly on macos-latest (push) Waiting to run
CI / Rust stable 18 months ago on macos-latest (push) Waiting to run
CI / Rust stable minus 8 releases on macos-latest (push) Waiting to run
CI / Rust stable on macos-latest (push) Waiting to run
CI / Rust 1.62.0 on ubuntu-22.04-arm (push) Waiting to run
CI / Rust beta on ubuntu-22.04-arm (push) Waiting to run
CI / Rust nightly on ubuntu-22.04-arm (push) Waiting to run
CI / Rust stable 18 months ago on ubuntu-22.04-arm (push) Waiting to run
CI / Rust stable minus 8 releases on ubuntu-22.04-arm (push) Waiting to run
CI / Rust stable on ubuntu-22.04-arm (push) Waiting to run
CI / Rust 1.0.0 on ubuntu-latest (push) Waiting to run
CI / Rust 1.62.0 on ubuntu-latest (push) Waiting to run
CI / Rust beta on ubuntu-latest (push) Waiting to run
CI / Rust nightly on ubuntu-latest (push) Waiting to run
CI / Rust stable 18 months ago on ubuntu-latest (push) Waiting to run
CI / Rust stable minus 8 releases on ubuntu-latest (push) Waiting to run
CI / Rust stable on ubuntu-latest (push) Waiting to run
CI / Rust 1.62.0 on windows-11-arm (push) Waiting to run
CI / Rust beta on windows-11-arm (push) Waiting to run
CI / Rust nightly on windows-11-arm (push) Waiting to run
CI / Rust stable 18 months ago on windows-11-arm (push) Waiting to run
CI / Rust stable minus 8 releases on windows-11-arm (push) Waiting to run
CI / Rust stable on windows-11-arm (push) Waiting to run
CI / Rust 1.62.0 on windows-latest (push) Waiting to run
CI / Rust beta on windows-latest (push) Waiting to run
CI / Rust nightly on windows-latest (push) Waiting to run
CI / Rust stable 18 months ago on windows-latest (push) Waiting to run
CI / Rust stable minus 8 releases on windows-latest (push) Waiting to run
CI / Rust stable on windows-latest (push) Waiting to run
Merge pull request #152 from dtolnay/trailingwhitespace
Clean up trailing whitespace from PR 145
2025-04-29 12:22:45 -07:00
.github Add ubuntu and windows arm to CI 2025-04-29 14:06:20 -04:00
scripts Add 1.85.1 patch release 2025-03-18 12:14:28 -07:00
action.yml Clean up trailing whitespace from PR 145 2025-04-29 12:20:14 -07:00
LICENSE Add MIT license 2021-10-09 02:41:20 +01:00
README.md Update doc actions/checkout@v3 -> v4 2023-09-18 02:00:52 +08:00

Install Rust Toolchain

This GitHub Action installs a Rust toolchain using rustup. It is designed for one-line concise usage and good defaults.


Example workflow

name: test suite
on: [push, pull_request]

jobs:
  test:
    name: cargo test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
      - run: cargo test --all-features

The selection of Rust toolchain is made based on the particular @rev of this Action being requested. For example "dtolnay/rust-toolchain@nightly" pulls in the nightly Rust toolchain, while "dtolnay/rust-toolchain@1.42.0" pulls in 1.42.0.


Inputs

All inputs are optional.

Name Description
toolchain Rustup toolchain specifier e.g. stable, nightly, 1.42.0, nightly-2022-01-01. Important: the default is to match the @rev as described above. When passing an explicit toolchain as an input instead of @rev, you'll want to use "dtolnay/rust-toolchain@master" as the revision of the action.
targets Comma-separated string of additional targets to install e.g. wasm32-unknown-unknown
components Comma-separated string of additional components to install e.g. clippy, rustfmt

Outputs

Name Description
cachekey A short hash of the installed rustc version, appropriate for use as a cache key. "20220627a831"
name Rustup's name for the selected version of the toolchain, like "1.62.0". Suitable for use with cargo +${{steps.toolchain.outputs.name}}.

Toolchain expressions

The following forms are available for projects that use a sliding window of compiler support.

     # Installs the most recent stable toolchain as of the specified time
     # offset, which may be written in years, months, weeks, or days.
  - uses: dtolnay/rust-toolchain@master
    with:
      toolchain: stable 18 months ago
     # Installs the stable toolchain which preceded the most recent one by
     # the specified number of minor versions.
  - uses: dtolnay/rust-toolchain@master
    with:
      toolchain: stable minus 8 releases

License

The scripts and documentation in this project are released under the MIT License.