-
Notifications
You must be signed in to change notification settings - Fork 1.9k
-
Is this a bug or expected issue?
Action itself is dead simple: https://github.com/Gigas002/dotnet_gh_deploy/blob/master/.github/workflows/codeql.yml
But looking at logs, codeql tries to use dotnet 8.0 instead, which fails: https://github.com/Gigas002/dotnet_gh_deploy/actions/runs/13724205415/job/38386637583
Beta Was this translation helpful? Give feedback.
All reactions
Hi @Gigas002,
The default version of dotnet on ubuntu-latest is currently 8.0.112, so that is what CodeQL uses. If you are targeting a 9.x project, then you will need to install that version of using a setup-dotnet step in your workflow before initialising CodeQL.
Replies: 1 comment 1 reply
-
Hi @Gigas002,
The default version of dotnet on ubuntu-latest is currently 8.0.112, so that is what CodeQL uses. If you are targeting a 9.x project, then you will need to install that version of using a setup-dotnet step in your workflow before initialising CodeQL.
Beta Was this translation helpful? Give feedback.
All reactions
-
I see, that makes sense. Thank you for explanation
Beta Was this translation helpful? Give feedback.