Skip to content

Commit fec9a3b

Browse files
committed
update remaining gh actions
1 parent db8a393 commit fec9a3b

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

Diff for: .github/workflows/check-formatting.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ jobs:
1717
- name: Setup .NET 5
1818
uses: actions/setup-dotnet@v1
1919
with:
20-
dotnet-version: '5.0.302'
20+
dotnet-version: '6.x.x'
2121

2222
- name: Check source document formatting
23+
working-directory: ./
2324
run: |
2425
dotnet tool restore
25-
dotnet fake build -t CheckFormat
26+
chmod u+x ./build.sh
27+
./build.sh CheckFormat

Diff for: .github/workflows/verify-docs.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v2
1616

17-
- name: Setup .NET 5
17+
- name: Setup .NET 6
1818
uses: actions/setup-dotnet@v1
1919
with:
20-
dotnet-version: '5.0.302'
20+
dotnet-version: '6.x.x'
2121

2222
- name: Run verification script
2323
run: |
2424
dotnet tool restore
25-
dotnet fake build -t verifydocs
25+
./build.cmd verifydocs

0 commit comments

Comments
 (0)