Compare commits

...

3 Commits

Author SHA1 Message Date
Rik Huijzer 0c9cdffcab
Merge cdd6408fed into bb45937a05 2024-04-14 12:03:54 -07:00
Rik Huijzer cdd6408fed
Also apply suggestion to other examples 2023-06-26 09:47:06 +02:00
Rik Huijzer 10d4c2367f
Mention quotes for version 2023-06-26 09:43:29 +02:00
1 changed files with 4 additions and 2 deletions

View File

@ -43,6 +43,8 @@ All inputs are optional.
Rustup toolchain specifier e.g. <code>stable</code>, <code>nightly</code>, <code>1.42.0</code>, <code>nightly-2022-01-01</code>.
<b>Important: the default is to match the @rev as described above.</b>
When passing an explicit <code>toolchain</code> as an input instead of @rev, you'll want to use "dtolnay/rust-toolchain@master" as the revision of the action.
<b>Also important: use quotes to ensure that the right toolchain version is passed to this GitHub Action.</b>
For example, specify <code>toolchain: '1.70'</code> (with quotes) because <code>toolchain: 1.70</code> will be parsed as <code>toolchain: 1.7</code>.
</td>
</tr>
<tr>
@ -86,7 +88,7 @@ compiler support.
# offset, which may be written in years, months, weeks, or days.
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable 18 months ago
toolchain: 'stable 18 months ago'
```
```yaml
@ -94,7 +96,7 @@ compiler support.
# the specified number of minor versions.
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable minus 8 releases
toolchain: 'stable minus 8 releases'
```
<br>