diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 4a8d351..8537275 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -8,12 +8,15 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - name: Setup .NET Core - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 7.0.100 - - name: Build with dotnet - run: dotnet build -c Release - - name: Test with dotnet - run: dotnet test --no-restore + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Setup .NET Core + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.0.x + - name: Build with dotnet + run: dotnet build -c Release + - name: Test with dotnet + run: dotnet test --no-restore