Skip to content

Commit

Permalink
fix(workflows): Explicitly install .NET 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ViMaSter committed Feb 22, 2023
1 parent df96499 commit 09e63dc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/intergration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
path: app
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0'
dotnet-quality: 'daily'
- name: Build with dotnet
run: dotnet build --configuration Release
working-directory: app
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
path: app
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0'
dotnet-quality: 'daily'
- name: Build with dotnet
run: dotnet build --configuration Release
working-directory: app
Expand Down
2 changes: 1 addition & 1 deletion ScorecardGenerator.Test/Checks/LatestNET/NET7.csproj.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<PreserveCompilationContext>true</PreserveCompilationContext>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
</PropertyGroup>
Expand Down

0 comments on commit 09e63dc

Please sign in to comment.