Skip to content

Commit fc45e18

Browse files
committed
Fix gh actions
1 parent 1b4ae1d commit fc45e18

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@ jobs:
1515
- name: Setup .NET Core
1616
uses: actions/setup-dotnet@v1
1717
with:
18-
dotnet-version: 5.0.301
18+
dotnet-version: 5.0.400
1919
- name: Setup dotnet tools
2020
run: dotnet tool restore
2121
- name: Install src dependencies
2222
run: dotnet restore src
2323
- name: Install test dependencies
2424
run: dotnet restore test
25+
- name: Install build dependencies
26+
run: dotnet restore
2527
#- name: Check formatting
2628
# run: dotnet fantomas . -r --check
2729
- name: Build

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup .NET Core
1717
uses: actions/setup-dotnet@v1
1818
with:
19-
dotnet-version: 5.0.301
19+
dotnet-version: 5.0.400
2020

2121
- name: Setup tools
2222
run: dotnet tool restore

0 commit comments

Comments
 (0)