Adds a .NET 9 SDK setup action to linters (#88988)

## About The Pull Request

OpenDream was recently bumped to .NET 9, which is not on our runner
image. I added an action which installs the required .NET version for
DMCompiler to function.

## Why It's Good

Adding this action is not only good as a quick hack fix, but also for
posterity.
I also considered the impact this has on our runner execution time, but
my hope is that it should not matter if we have .NET installed already.
This commit is contained in:
Ivory
2025-01-09 13:15:48 +01:00
committed by GitHub
parent 143229cb73
commit 54f4812dad
+4
View File
@@ -75,6 +75,10 @@ jobs:
with:
path: tools/icon_cutter/cache
key: ${{ runner.os }}-cutter-${{ hashFiles('dependencies.sh') }}
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4.2.0
with:
dotnet-version: 9.x
- name: Install OpenDream
uses: robinraju/release-downloader@v1.11
with: