We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8898216 + 8219531 commit 18f79d5Copy full SHA for 18f79d5
1 file changed
.github/workflows/linux_builds.yml
@@ -150,7 +150,14 @@ jobs:
150
run: |
151
sudo rm -rf /usr/share/dotnet/sdk/*
152
153
- - name: Setup older .NET SDK as baseline
+ - name: Setup older .NET 6 SDK as baseline
154
+ if: matrix.build-mono
155
+ uses: actions/setup-dotnet@v4
156
+ with:
157
+ # Targeting the oldest version we want to support to ensure it still builds.
158
+ dotnet-version: 6.0.428
159
+
160
+ - name: Setup older .NET 8 SDK as baseline
161
if: matrix.build-mono
162
uses: actions/setup-dotnet@v4
163
with:
0 commit comments