Skip to content

Commit

Permalink
Code QL .net 8
Browse files Browse the repository at this point in the history
  • Loading branch information
damianh committed Nov 18, 2023
1 parent 10d081c commit 7d18ec3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions .github/WorkflowGen/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,7 @@ void GenerateCodeAnalysisWorkflow()

job.Step().ActionsCheckout();

job.Step()
.Name("Setup dotnet")
.Uses("actions/setup-dotnet@v3")
.With(("dotnet-version", "6.0.x"));
job.Step().ActionsSetupDotNet("8.0.x");

job.Step()
.Run("dotnet --info");
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup dotnet
- name: Setup Dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x
- run: dotnet --info
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down

0 comments on commit 7d18ec3

Please sign in to comment.