diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index b680927..3b1cb75 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -36,7 +36,7 @@ jobs: uses: actions/setup-dotnet@v5 with: dotnet-version: | - 9.0.x + 10.0.x # If this run was triggered by a pull request event, then checkout # the head of the pull request instead of the merge commit. diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 94b2776..0d7aee1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,10 +16,10 @@ jobs: uses: actions/setup-dotnet@v5 with: dotnet-version: '8.0.x' - - name: Set up dotnet 9 + - name: Set up dotnet 10 uses: actions/setup-dotnet@v5 with: - dotnet-version: '9.0.x' + dotnet-version: '10.0.x' - name: Build run: dotnet build - name: Run test suite