From 24585f9eca8ed39e924ca00647bc098138c85da0 Mon Sep 17 00:00:00 2001 From: AraHaan Date: Mon, 19 Feb 2024 13:15:42 -0500 Subject: [PATCH] Updated GitHub actions to .NET 8 SDK. --- .github/workflows/codacy-analysis.yml | 4 ++-- .github/workflows/dotnetcore-build.yml | 4 ++-- .github/workflows/dotnetcore-publish.yml | 4 ++-- .github/workflows/dotnetcore.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/codacy-analysis.yml b/.github/workflows/codacy-analysis.yml index 447c426..c765378 100644 --- a/.github/workflows/codacy-analysis.yml +++ b/.github/workflows/codacy-analysis.yml @@ -28,10 +28,10 @@ jobs: - name: Checkout code uses: actions/checkout@main - - name: Install latest .NET 6 SDK + - name: Install latest .NET 8 SDK uses: Elskom/setup-latest-dotnet@main with: - VERSION_MAJOR: '6' + VERSION_MAJOR: '8' VERSION_BAND: '2xx' - name: Restore and Build diff --git a/.github/workflows/dotnetcore-build.yml b/.github/workflows/dotnetcore-build.yml index 98d0f38..90c8c4b 100644 --- a/.github/workflows/dotnetcore-build.yml +++ b/.github/workflows/dotnetcore-build.yml @@ -16,10 +16,10 @@ jobs: steps: - uses: actions/checkout@main - - name: Install latest .NET 6 SDK + - name: Install latest .NET 8 SDK uses: Elskom/setup-latest-dotnet@main with: - VERSION_MAJOR: '6' + VERSION_MAJOR: '8' VERSION_BAND: '2xx' - name: Restore, Build, and pack diff --git a/.github/workflows/dotnetcore-publish.yml b/.github/workflows/dotnetcore-publish.yml index 2fea732..b71a697 100644 --- a/.github/workflows/dotnetcore-publish.yml +++ b/.github/workflows/dotnetcore-publish.yml @@ -17,10 +17,10 @@ jobs: steps: - uses: actions/checkout@main - - name: Install latest .NET 6 SDK + - name: Install latest .NET 8 SDK uses: Elskom/setup-latest-dotnet@main with: - VERSION_MAJOR: '6' + VERSION_MAJOR: '8' VERSION_BAND: '2xx' - name: Restore, Build, and pack diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 5300dfc..acd1b85 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -13,10 +13,10 @@ jobs: steps: - uses: actions/checkout@main - - name: Install latest .NET 6 SDK + - name: Install latest .NET 8 SDK uses: Elskom/setup-latest-dotnet@main with: - VERSION_MAJOR: '6' + VERSION_MAJOR: '8' VERSION_BAND: '2xx' - name: Restore, Build, and pack