Skip to content

Commit 3b4117f

Browse files
committed
Fix nuget version to 5.8.x
Previously, we had an issue where the latest default version of nuget in github actions was broken and couldn't install dependencies. This was fixed (temporarily) by #6054 when the latest version installed by setup-nuget was 5.8.1. This has now changed to also install the bugged version (5.9.x) by default, giving us problems. These are now solved by temporarily fixing the version of nuget to a known working version (according to multiple reports online, and evidence of our own CI logs).
1 parent 61010c3 commit 3b4117f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ jobs:
258258
submodules: recursive
259259
- uses: nuget/setup-nuget@v1
260260
with:
261-
nuget-version: 'latest'
261+
nuget-version: '5.8.x'
262262
- name: Fetch dependencies
263263
run: |
264264
choco install winflexbison3
@@ -305,7 +305,7 @@ jobs:
305305
submodules: recursive
306306
- uses: nuget/setup-nuget@v1
307307
with:
308-
nuget-version: 'latest'
308+
nuget-version: '5.8.x'
309309
- name: Fetch dependencies
310310
run: |
311311
choco install winflexbison3 strawberryperl
@@ -408,7 +408,7 @@ jobs:
408408
submodules: recursive
409409
- uses: nuget/setup-nuget@v1
410410
with:
411-
nuget-version: 'latest'
411+
nuget-version: '5.8.x'
412412
- name: Fetch dependencies
413413
run: |
414414
choco install winflexbison3

.github/workflows/release-packages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
submodules: recursive
151151
- uses: nuget/setup-nuget@v1
152152
with:
153-
nuget-version: 'latest'
153+
nuget-version: '5.8.x'
154154
- name: Fetch dependencies
155155
run: |
156156
choco install winflexbison3

0 commit comments

Comments
 (0)