Skip to content

Commit 1d4a702

Browse files
committed
Updated workflows to use .NET 10
1 parent e9e871d commit 1d4a702

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
build-mode: none
2727
- language: csharp
2828
build-mode: manual
29-
dotnet-version: '9.0.x'
29+
dotnet-version: '10.0.x'
3030

3131
steps:
3232
- name: Checkout repository
@@ -39,7 +39,7 @@ jobs:
3939
dotnet-version: ${{ matrix.dotnet-version }}
4040

4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@v3
42+
uses: github/codeql-action/init@v4
4343
with:
4444
languages: ${{ matrix.language }}
4545
build-mode: ${{ matrix.build-mode }}
@@ -51,6 +51,6 @@ jobs:
5151
dotnet build --configuration Release --no-restore
5252
5353
- name: Perform CodeQL Analysis
54-
uses: github/codeql-action/analyze@v3
54+
uses: github/codeql-action/analyze@v4
5555
with:
5656
category: "/language:${{matrix.language}}"

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup .NET
2727
uses: actions/setup-dotnet@v4
2828
with:
29-
dotnet-version: 9.0.x
29+
dotnet-version: 10.0.x
3030

3131
# Step 3: Restore dependencies
3232
- name: Restore dependencies

0 commit comments

Comments
 (0)