What do we think about the idea of adding support for something like this: ```yaml [...] steps: - uses: action/checkout@v4 - uses: asdf-vm/actions/install@v2 with: tools: | action-validator ``` ...so if you have a `.tool-versions` file like this: ```bash $ cat .tool-versions action-validator 0.5.3 gcloud 1.2.3 ``` ...then it would only `asdf install action-validator 0.5.3` (and not `gcloud`). My hope is that this could simplify/speed up many jobs where you only need one particular tool for the thing you want to run.