Skip to content

Commit

Permalink
Add .NET 8 SDK, keep .NET 6 SDK for runtime purposes. When this is me…
Browse files Browse the repository at this point in the history
…rged actions/setup-dotnet#476 we can use a switch

Signed-off-by: Aliaksandr Kukrash <[email protected]>
  • Loading branch information
multiarc committed Jan 11, 2025
1 parent 08abc41 commit e2dd870
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,14 @@ jobs:
with:
lfs: true
fetch-depth: 0
- name: "Install .NET SDK"
uses: actions/setup-dotnet@v3.2.0
- name: "Install .NET 6.0 SDK"
uses: actions/setup-dotnet@v4.2.0
with:
dotnet-version: |
6.0.x
global-json-file: "./global.json"
dotnet-version: 6.0.x
- name: "Install .NET 8.0 SDK"
uses: actions/[email protected]
with:
dotnet-version: 8.0.x
- name: "Dotnet Tool Restore"
run: dotnet tool restore
shell: pwsh
Expand Down

0 comments on commit e2dd870

Please sign in to comment.