From 5aa4dedb17cb1a3849189ee7ca9b47157410e268 Mon Sep 17 00:00:00 2001 From: atakavci <58048133+atakavci@users.noreply.github.com> Date: Wed, 15 Jan 2025 16:38:31 +0300 Subject: [PATCH] Piipeline fix for dotnet versions in ubuntu-latest (#372) pipeline fix --- .github/workflows/reusable.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reusable.yml b/.github/workflows/reusable.yml index 755153b1..5f41716b 100644 --- a/.github/workflows/reusable.yml +++ b/.github/workflows/reusable.yml @@ -37,7 +37,10 @@ jobs: - name: .NET Core 8 uses: actions/setup-dotnet@v3 with: - dotnet-version: 8 + dotnet-version: | + 6 + 7 + 8 - name: Run redis-stack-server docker working-directory: .github