Skip to content

Commit ed9a75c

Browse files
committed
Update pipelines and workflows to use .NET8
1 parent 3a59b69 commit ed9a75c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.azure-pipelines/ci-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ stages:
3636
version: 2.x
3737

3838
- task: UseDotNet@2
39-
displayName: 'Use .NET 7'
39+
displayName: 'Use .NET 8'
4040
inputs:
41-
version: 7.x
41+
version: 8.x
4242

4343
- task: PoliCheck@1
4444
displayName: 'Run PoliCheck "/src"'

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup .NET
1717
uses: actions/setup-dotnet@v4
1818
with:
19-
dotnet-version: 7.0.x
19+
dotnet-version: 8.0.x
2020

2121
- name: Data gatherer
2222
id: data_gatherer

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup .NET
2020
uses: actions/setup-dotnet@v4
2121
with:
22-
dotnet-version: 7.0.x
22+
dotnet-version: 8.0.x
2323

2424
- name: Initialize CodeQL
2525
id: init_codeql

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Setup .NET
4242
uses: actions/setup-dotnet@v4
4343
with:
44-
dotnet-version: 7.0.x
44+
dotnet-version: 8.0.x
4545
- uses: actions/checkout@v4
4646
with:
4747
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

0 commit comments

Comments
 (0)