diff --git a/.github/actions/setup-dotnet-windows/action.yml b/.github/actions/setup-dotnet-windows/action.yml index e7fbc620a..62a714700 100644 --- a/.github/actions/setup-dotnet-windows/action.yml +++ b/.github/actions/setup-dotnet-windows/action.yml @@ -29,20 +29,20 @@ runs: with: architecture: x86 - - name: Setup .NET x86 ${{steps.get_channels.outputs.channels_multiline}} - uses: dlemstra/setup-dotnet@add-architecture-option - if: ${{inputs.architecture == 'x86'}} + - name: Setup .NET ${{inputs.architecture}} ${{steps.get_channels.outputs.channels_multiline}} + uses: actions/setup-dotnet@v4 with: - dotnet-architecture: x86 dotnet-version: | ${{steps.get_channels.outputs.channel}} ${{steps.get_channels.outputs.channels_multiline}} - env: - DOTNET_INSTALL_DIR: ${{steps.get-program-files-x86.outputs.path}}/dotnet - - name: Setup .NET ${{inputs.architecture}} ${{steps.get_channels.outputs.channels_multiline}} - uses: actions/setup-dotnet@v4 + - name: Setup .NET x86 ${{steps.get_channels.outputs.channels_multiline}} + uses: dlemstra/setup-dotnet@add-architecture-option + if: ${{inputs.architecture == 'x86'}} with: + dotnet-architecture: x86 dotnet-version: | ${{steps.get_channels.outputs.channel}} ${{steps.get_channels.outputs.channels_multiline}} + env: + DOTNET_INSTALL_DIR: ${{steps.get-program-files-x86.outputs.path}}/dotnet \ No newline at end of file