From e0330799f2f7df5fbd488b175d9aa5d799f0c9d2 Mon Sep 17 00:00:00 2001 From: CodingFlow <3643313+CodingFlow@users.noreply.github.com> Date: Thu, 6 Jun 2024 16:09:49 -0400 Subject: [PATCH] - Update dotnet version from 7 to 8 in GitHub unit test workflow. - Update GitHub actions to latest major version due to deprecation of older Node.js version. --- .github/workflows/pull-request.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index a8f69f1..e138a0a 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -7,12 +7,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - dotnet-version: ["7.0.x"] + dotnet-version: ["8.0.x"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup .NET Core SDK ${{ matrix.dotnet-version }} - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: ${{ matrix.dotnet-version }} - name: Install dependencies