Files
fish-shell/.github/actions/rust-toolchain@stable/action.yml
Johannes Altmanninger fb0f9842ae Update to Rust 1.90
2025-09-19 15:43:55 +02:00

21 lines
473 B
YAML

name: Stable Rust Toolchain
inputs:
targets:
description: Comma-separated list of target triples to install for this toolchain
required: false
components:
description: Comma-separated list of components to be additionally installed
required: false
permissions:
contents: read
runs:
using: "composite"
steps:
- uses: dtolnay/rust-toolchain@1.90
with:
targets: ${{ inputs.targets }}
components: ${{ inputs.components }}