Skip to content

Commit a347202

Browse files
codebytesCopilot
andcommitted
chore: fix dotnet.yml workflow to use .NET 8 SDK
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 60fce7e commit a347202

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/dotnet.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v6
1616
- name: Setup .NET
17-
uses: actions/setup-dotnet@v1
17+
uses: actions/setup-dotnet@v4
1818
with:
19-
dotnet-version: 5.0.x
19+
dotnet-version: '8.0.x'
2020
- name: Restore dependencies
2121
run: dotnet restore
2222
- name: Build
2323
run: dotnet build --no-restore
2424
- name: Test
2525
run: dotnet test --no-build --verbosity normal
26+

0 commit comments

Comments
 (0)