From 290a0d1eb0b40bc87c5bb9aa3e5cb2b7e040e7e0 Mon Sep 17 00:00:00 2001 From: Jonas Dellinger Date: Sat, 27 May 2023 21:50:57 +0200 Subject: [PATCH] update cicd .net versions --- .github/workflows/cicd.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index 777dad50..234f2982 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -12,16 +12,13 @@ jobs: uses: actions/checkout@v2 - uses: actions/setup-dotnet@v1 with: - dotnet-version: "3.1.x" + dotnet-version: "5.x" - uses: actions/setup-dotnet@v1 with: - dotnet-version: "5.0.x" + dotnet-version: "6.x" - uses: actions/setup-dotnet@v1 with: - dotnet-version: "6.0.x" - - uses: actions/setup-dotnet@v1 - with: - dotnet-version: "7.0.x" + dotnet-version: "7.x" - name: Set RELEASE_VERSION run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - name: Restore Packages