Skip to content

Commit 1988bc0

Browse files
committed
ci(scalar): work around bug in actions/setup-dotnet
The bug is actually dotnet/install-scripts#610 and it seems that _somehow_ the logic to determine the latest version is broken with cURL v8.14.0. Hard-coding the latest version seems to fix this. Note: https://dotnet.microsoft.com/en-us/download/dotnet/3.1 says that v3.1.426 is the latest. This site also says that .NET Core 3.1 is out of support, and therefore it is unlikely that a different "latest" version is going to materialize, like, ever. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 1011f1c commit 1988bc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/scalar-functional-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
- name: Setup .NET Core
127127
uses: actions/setup-dotnet@v4
128128
with:
129-
dotnet-version: '3.1.x'
129+
dotnet-version: '3.1.426'
130130

131131
- name: Install dependencies
132132
run: dotnet restore

0 commit comments

Comments
 (0)