Skip to content

Commit 711bb08

Browse files
authored
[EngSys] Install .NET 6.0 in workflows and pipelines (#354)
- Required now for workflow and pipeline to pass - Long-term fix is to upgrade the version of .NET used by the tool
1 parent 7c93a40 commit 711bb08

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ jobs:
2323
with:
2424
node-version: "20"
2525

26+
- uses: actions/setup-dotnet@v4
27+
with:
28+
dotnet-version: "6"
29+
2630
- name: npm ci
2731
run: npm ci
2832

eng/test-steps.yml

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ parameters:
44
default: "drop"
55

66
steps:
7+
- task: UseDotNet@2
8+
inputs:
9+
version: 6.x
710
- script: npm ci
811
displayName: npm ci
912
- script: npm run lint

0 commit comments

Comments
 (0)