Skip to content

Commit d9010b6

Browse files
CopilotCopilot
andcommitted
Fix CI: update .NET SDK version to 9.0.x and actions to v4
The CI workflow was using .NET 6.0.x SDK and outdated action versions, causing build failures with .NET 9.0 target framework and 10.x packages. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 60dcc3a commit d9010b6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/aspnetcore.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v1
11+
- uses: actions/checkout@v4
1212
- name: Setup .NET Core
13-
uses: actions/setup-dotnet@v1
13+
uses: actions/setup-dotnet@v4
1414
with:
15-
dotnet-version: '6.0.x'
15+
dotnet-version: '9.0.x'
1616
- name: Install dependencies
1717
run: dotnet restore
1818
- name: Build

0 commit comments

Comments
 (0)