Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
runs-on: windows-latest
steps:
- name: Check Out
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: Setup Dot Net Version
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v3
Comment on lines 27 to +30
with:
dotnet-version: 10.x
- name: Restore
Expand Down
8 changes: 4 additions & 4 deletions NEL.MESH.Infrastructure/Services/ScriptGenerationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using ADotNet.Clients;
using ADotNet.Models.Pipelines.GithubPipelines.DotNets;
using ADotNet.Models.Pipelines.GithubPipelines.DotNets.Tasks;
using NEL.MESH.Infrastructure.Models.SetupDotNetTaskV4s;
using ADotNet.Models.Pipelines.GithubPipelines.DotNets.Tasks.SetupDotNetTaskV3s;

namespace NEL.MESH.Infrastructure.Services
{
Expand Down Expand Up @@ -55,16 +55,16 @@ public void GenerateBuildScript(string branchName, string projectName, string do

Steps = new List<GithubTask>
{
new CheckoutTaskV4
new CheckoutTaskV3
{
Name = "Check Out"
},

new SetupDotNetTaskV4
new SetupDotNetTaskV3
{
Name = "Setup Dot Net Version",

With = new TargetDotNetVersionV4
With = new TargetDotNetVersionV3
{
DotNetVersion = dotNetVersion
}
Expand Down
Loading