diff --git a/action.yaml b/action.yaml index a15ff7d..ede7b34 100644 --- a/action.yaml +++ b/action.yaml @@ -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: