Skip to content

Commit 1ccda7c

Browse files
committed
Update workflow to use latest actions and .NET versions
Upgraded actions/checkout and actions/setup-dotnet to v5. Updated .NET setup to include versions 8.0.x and 10.0.x for broader compatibility and future-proofing.
1 parent 48735d1 commit 1ccda7c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@ jobs:
1414

1515
steps:
1616
- name: Check out code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Set up .NET
20-
uses: actions/setup-dotnet@v4
20+
uses: actions/setup-dotnet@v5
2121
with:
22-
dotnet-version: '6.0.x'
22+
dotnet-version: |
23+
8.0.x
24+
10.0.x
2325
2426
- name: Build
2527
run: |

0 commit comments

Comments
 (0)