Skip to content

Commit 249ce16

Browse files
committed
.net version fixes for github actions
1 parent f4bbd9a commit 249ce16

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/UnitTests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ on: [push, pull_request, release]
44

55
jobs:
66
test:
7-
runs-on: [windows-latest]
7+
runs-on: windows-latest
88

99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
- name: Setup .NET Core
12-
uses: actions/setup-dotnet@v1
12+
uses: actions/setup-dotnet@v3
1313
with:
14-
dotnet-version: 8.0
14+
dotnet-version: 8.0.406
1515
- name: Run Unit Tests
1616
run: dotnet test

.github/workflows/dotnetcore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
- name: Setup .NET Core
1515
uses: actions/setup-dotnet@v1
1616
with:
17-
dotnet-version: 8.0
17+
dotnet-version: 8.0.406
1818
- name: Build with dotnet
1919
run: dotnet build --configuration Release

0 commit comments

Comments
 (0)