Skip to content

Commit

Permalink
feat: net8 support
Browse files Browse the repository at this point in the history
1. Updated the version of the 'actions/setup-dotnet' action from v3 to v3.2.0 in 'build.yml' and 'codeql-analysis.yml'. (line 1)
2. Updated the 'dotnet-version' parameter in both files to include multiple versions of .NET, including 8.0.100, 7.0.403, and 6.x. (line 2)
3. Changes were made to ensure compatibility with different versions of .NET and to improve the overall functionality of the workflows.
  • Loading branch information
Lulalaby committed Nov 15, 2023
1 parent bd11bf5 commit 876d4da
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: 7.0.403
dotnet-version: |
8.0.100
7.0.403
6.x
- name: Build library
run: dotnet build -c Release -v normal
7 changes: 5 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,12 @@ jobs:
languages: ${{ matrix.language }}

- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: 7.0.403
dotnet-version: |
8.0.100
7.0.403
6.x
- name: Autobuild
uses: github/codeql-action/autobuild@v2
Expand Down

0 comments on commit 876d4da

Please sign in to comment.