Skip to content

Commit 70181ba

Browse files
committed
fix dotnet versions on workflows
1 parent 4c03086 commit 70181ba

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.github/workflows/codeql.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,12 @@ jobs:
7070
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
7171
# queries: security-extended,security-and-quality
7272

73-
- name: Setup .NET 6.0
73+
- name: Setup .NET 8.0
7474
uses: actions/setup-dotnet@v4
7575
with:
76-
dotnet-version: 6.0.427
76+
dotnet-version: 8.0.403
7777

78-
- if: matrix.build-mode == 'manual'
79-
shell: bash
78+
- shell: bash
8079
run: dotnet build --configuration Release -v:m
8180

8281
- name: Perform CodeQL Analysis

.github/workflows/dotnetcore.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v1
11+
- uses: actions/checkout@v4
1212

13-
- name: Setup .NET 6.0
14-
uses: actions/setup-dotnet@v1.8.2
13+
- name: Setup .NET 8.0
14+
uses: actions/setup-dotnet@v4
1515
with:
16-
dotnet-version: 6.0.100
16+
dotnet-version: 8.0.403
1717

18-
- name: Build and Test with dotnet
19-
run: NONET461=true dotnet test --configuration Release -v:m | grep -v 'NAME_UNKNOWN:Package'
18+
- shell: bash
19+
run: dotnet build --configuration Release -v:m

0 commit comments

Comments
 (0)