diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index aed729c7..3dfb81a2 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -17,7 +17,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4.0.0 with: - dotnet-version: 8.0.204 + dotnet-version: 8.0.300 - name: Install tools run: dotnet tool restore - name: Check formatting @@ -31,7 +31,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4.0.0 with: - dotnet-version: 8.0.204 + dotnet-version: 8.0.300 - name: Run tests run: dotnet test -c Debug --collect:"XPlat Code Coverage" --settings coverlet.runsettings ArchUnitNETTests/ - name: Upload coverage reports to Codecov @@ -50,6 +50,6 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4.0.0 with: - dotnet-version: 8.0.204 + dotnet-version: 8.0.300 - name: Run tests run: dotnet test -c Debug diff --git a/global.json b/global.json index 037d3ffe..c08f7e6f 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.204", + "version": "8.0.300", "rollForward": "latestMajor", "allowPrerelease": true }