diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 728ff887..5d1db430 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -9,7 +9,7 @@ ] }, "nbgv": { - "version": "3.4.231", + "version": "3.6.133", "commands": [ "nbgv" ] diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f24ba446..7217dd56 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: - name: Setup dotnet uses: actions/setup-dotnet@v1 with: - dotnet-version: '8.0.100-preview.7.23376.3' + dotnet-version: '8.0.100-rc.2.23502.2' - name: NuGet cache uses: actions/cache@v1 @@ -32,6 +32,9 @@ jobs: if echo "${{github.ref}}" | grep -q "^refs/heads/"; then git checkout "$(echo ${{github.ref}} | sed -E 's|^refs/heads/||')"; fi + # .NET 8 RC2 has a bug where it restores the wrong version of tools... + dotnet tool update paket --version 8.0.0-alpha002 + dotnet tool update nbgv --version 3.6.133 # Ensure that the selenium chrome driver matches the installed chrome ./build.ps1 -t update-chromedriver # Build @@ -59,7 +62,7 @@ jobs: - name: Setup dotnet uses: actions/setup-dotnet@v1 with: - dotnet-version: '8.0.100-preview.7.23376.3' + dotnet-version: '8.0.100-rc.2.23502.2' - name: Download nupkg uses: actions/download-artifact@v1 @@ -83,7 +86,7 @@ jobs: - name: Setup dotnet uses: actions/setup-dotnet@v1 with: - dotnet-version: '8.0.100-preview.7.23376.3' + dotnet-version: '8.0.100-rc.2.23502.2' - name: Prepare run: | diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a87d647b..323ed366 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,7 +11,7 @@ jobs: - name: Setup dotnet uses: actions/setup-dotnet@v1 with: - dotnet-version: '7.0.100' + dotnet-version: '8.0.100-rc.2.23502.2' - name: Download nupkg uses: dawidd6/action-download-artifact@v2 diff --git a/global.json b/global.json index c44660e0..f8044b4f 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,7 @@ { "sdk": { - "version": "8.0.100-preview.7.23376.3", - "rollForward": "latestFeature" + "version": "8.0.100-rc.2.23502.2", + "rollForward": "feature", + "allowPrerelease": true } }