Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Inverse update framework task
  • Loading branch information
dvoituron committed Nov 12, 2025
commit 453ec7ee9c419aa0d5490c1a542760d014d43587
11 changes: 5 additions & 6 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Update TargetFrameworks to net9.0
shell: pwsh
run: |
.\.github\workflows\update-target-frameworks.ps1 -newTarget "net9.0"

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
Expand All @@ -48,12 +53,6 @@ jobs:
with:
languages: ${{ matrix.language }}

- if: matrix.language == 'csharp'
name: Update TargetFrameworks to net9.0
shell: pwsh
run: |
.\.github\workflows\update-target-frameworks.ps1 -newTarget "net9.0"

- if: matrix.language == 'csharp'
name: Manually build CSharp on .NET
run: |
Expand Down
Loading