We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Depending on which version of the action you use you get different rustup check results.
jobs: build: runs-on: ubuntu-latest steps: - name: Checkout #Clones the repository to the runner uses: actions/checkout@v4 #uninstall stable rust (GitHub runners come with latest stable rust installed). - shell: bash run: rustup toolchain uninstall stable - name: rustup_toolchain_install uses: dtolnay/[email protected] #Run rustup check - shell: pwsh run: rustup check
yields:
However running:
jobs: build: runs-on: ubuntu-latest steps: - name: Checkout #Clones the repository to the runner uses: actions/checkout@v4 #uninstall stable rust (GitHub runners come with latest stable rust installed). - shell: bash run: rustup toolchain uninstall stable - name: rustup_toolchain_install uses: dtolnay/rust-toolchain@master with: toolchain: 1.81 #Run rustup check - shell: pwsh run: rustup check
So only using
uses: dtolnay/rust-toolchain@master with: toolchain: 1.81
yields the expected rustup check outcome.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Depending on which version of the action you use you get different rustup check results.
yields:
However running:
yields:
So only using
yields the expected rustup check outcome.
The text was updated successfully, but these errors were encountered: