From 6f47e53ef15438bde3c590835ac90d215e0c60af Mon Sep 17 00:00:00 2001 From: Maciej Jedrzejewski Date: Sun, 4 Feb 2024 09:22:41 +0100 Subject: [PATCH] refactor: update dotnet to the newest version on monolith workflow --- .github/workflows/chapter-4-workflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/chapter-4-workflow.yml b/.github/workflows/chapter-4-workflow.yml index 0876aa82..008a6b7d 100644 --- a/.github/workflows/chapter-4-workflow.yml +++ b/.github/workflows/chapter-4-workflow.yml @@ -26,7 +26,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Add GitHub NuGet Source run: | dotnet nuget add source --username $OWNER --password $GITHUB_TOKEN --store-password-in-clear-text --name github "https://nuget.pkg.github.com/$OWNER/index.json" @@ -51,7 +51,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Add GitHub NuGet Source run: | dotnet nuget add source --username $OWNER --password $GITHUB_TOKEN --store-password-in-clear-text --name github "https://nuget.pkg.github.com/$OWNER/index.json"