From 42c883f25bfd0ef70f344c2ae9680a518c7a39a2 Mon Sep 17 00:00:00 2001 From: "Jeffrey T. Fritz" Date: Tue, 10 Oct 2023 18:54:27 -0400 Subject: [PATCH] Pinned to RC1 --- .github/workflows/dotnet.yml | 4 ++-- global.json | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 global.json diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 0654db00..01df312d 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -26,7 +26,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 8.0.x + global-json-file: ./global.json - name: Restore dependencies run: dotnet restore - name: Build @@ -51,7 +51,7 @@ jobs: - name: Setup dotnet uses: actions/setup-dotnet@v3 with: - dotnet-version: 8.0.x + global-json-file: ./global.json - run: dotnet build - name: Execute Playwright tests env: diff --git a/global.json b/global.json new file mode 100644 index 00000000..7a76b504 --- /dev/null +++ b/global.json @@ -0,0 +1,5 @@ +{ + "sdk": { + "version": "8.0.100-rc.1.23463.5" + } +} \ No newline at end of file