diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 4b3d54e4..16cd0076 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -2,22 +2,23 @@ name: .NET Core Workflow on: push: - branches: v6 + branches: [v6, v7] pull_request: - branches: v6 + branches: [v6, v7] jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: checkout + uses: actions/checkout@v4.1.5 - name: Setup .NET Core - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4.0.0 with: - dotnet-version: '6.x' + dotnet-version: '8.x' include-prerelease: true - name: Build Project