* Upgrade our github actions to "node16" Each github actions run has a lot of warnings about using node12 so this upgrades our repository to using node16. I'm hoping no other changes are needed and I suspect other actions we're using are on node12 and will need further updates, but this should help pin down what's remaining. * Update `actions/checkout` workflow to `v3` * Update to `actions/cache@v3` * Update to `actions/upload-artifact@v3` * Drop usage of `actions-rs/toolchain` * Update to `actions/setup-python@v4` * Update mdbook version
13 lines
241 B
YAML
13 lines
241 B
YAML
name: 'Install Rust toolchain'
|
|
description: 'Install both `rustup` and a Rust toolchain'
|
|
|
|
inputs:
|
|
toolchain:
|
|
description: 'Default toolchan to install'
|
|
required: false
|
|
default: 'stable'
|
|
|
|
runs:
|
|
using: node16
|
|
main: 'main.js'
|