Skip to content
New issue

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

docs(action): Improve wording of tool setup steps #402

Merged
merged 1 commit into from
Oct 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,20 +46,20 @@ runs:
# Remove tools to be installed via actions/setup-* from .tool-versions.
printf "%s\n" "${file[@]}" >.tool-versions
shell: bash
- name: Set up .NET SDK at version specified in .tool-versions.
- name: Set up .NET SDK at the version specified in .tool-versions.
if: steps.tool-versions.outputs.dotnet-core != ''
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: ${{ steps.tool-versions.outputs.dotnet-core }}
- name: Set up Node.js at version specified in .tool-versions.
- name: Set up Node.js at the version specified in .tool-versions.
uses: actions/setup-node@v3.8.1
with:
node-version: ${{ steps.tool-versions.outputs.nodejs }}
- name: Set up Python at version specified in .tool-versions.
- name: Set up Python at the version specified in .tool-versions.
uses: actions/setup-python@v4.7.1
with:
python-version: ${{ steps.tool-versions.outputs.python }}
- name: Set up Ruby at version specified in .tool-versions.
- name: Set up Ruby at the version specified in .tool-versions.
if: steps.tool-versions.outputs.ruby != ''
uses: ruby/setup-ruby@v1.156.0
with:
Expand Down