From 84191e90626e4dd2e801d32024ce5611ef4f1d84 Mon Sep 17 00:00:00 2001 From: Vitalii Mikhailov Date: Fri, 29 Dec 2023 17:56:37 +0200 Subject: [PATCH] Update action.yml --- action.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/action.yml b/action.yml index e36c3a2..0e312b7 100644 --- a/action.yml +++ b/action.yml @@ -16,16 +16,14 @@ runs: with: submodules: 'recursive' fetch-depth: ${{inputs.fetch-depth}} - - - name: Setup .NET 6 - uses: actions/setup-dotnet@master - with: - dotnet-version: 6.x.x - - - name: Setup .NET 7 - uses: actions/setup-dotnet@master + + - name: Setup .NET 6, 7, 8 + - uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.x.x + dotnet-version: | + 6.x.x + 7.x.x + 8.x.x - name: Ensure NuGet Source uses: fabriciomurta/ensure-nuget-source@v1