From 50a1fab7c1e81fa32057182c1c5380f8c0a7e9ac Mon Sep 17 00:00:00 2001 From: Collin Barrett Date: Tue, 28 May 2024 12:08:10 -0500 Subject: [PATCH] =?UTF-8?q?fix(svcs):=20=F0=9F=90=9B=20install=20aspire=20?= =?UTF-8?q?workload=20for=20CodeQL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/codeql.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 2df2e1bd1..d724656cf 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -27,6 +27,12 @@ jobs: - language: javascript-typescript build-mode: none steps: + # CodeQL C# autobuild doesn't (yet?) recognize .NET Aspire + - if: matrix.language == 'csharp' + run: | + dotnet workload update + dotnet workload install aspire + - name: Checkout repository uses: actions/checkout@v4