Skip to content

Commit 7957064

Browse files
wjlafranceclaude
andcommitted
Update GitHub Actions workflow for .NET 10.0 compatibility
- Upgrade actions/checkout to v4 and actions/setup-dotnet to v4 - Change dotnet-version from 3.1.301 to 10.0.x - Fixes build failures on ubuntu-latest (Ubuntu 24.04) due to missing libssl1.1 - Avoids Node.js 20 deprecation warnings (effective June 2026) Co-Authored-By: Claude Haiku 4.5 <[email protected]>
1 parent a36d853 commit 7957064

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/dotnet-core.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
working-directory: ./src
1616

1717
steps:
18-
- uses: actions/checkout@v2
19-
- name: Setup .NET Core
20-
uses: actions/setup-dotnet@v1
18+
- uses: actions/checkout@v4
19+
- name: Setup .NET
20+
uses: actions/setup-dotnet@v4
2121
with:
22-
dotnet-version: 3.1.301
22+
dotnet-version: 10.0.x
2323
- name: Install dependencies
2424
run: dotnet restore
2525
working-directory: ${{env.working-directory}}

0 commit comments

Comments
 (0)