Skip to content

Commit 42d5bbe

Browse files
authored
Fix the update dependencies action by installing .NET 9 as well (#10397)
1 parent fc66a25 commit 42d5bbe

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/update-dependencies.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1818

19-
- name: Setup .NET 10
19+
- name: Setup .NET 9 and 10
2020
uses: actions/setup-dotnet@b2ace4b12f4cec1b96b6361ff2694ba9e931ceb4 # v3.3.1
2121
with:
22-
dotnet-version: "10.0.x"
22+
dotnet-version: |
23+
9.0.x
24+
10.0.x
2325
2426
- name: Restore solution
2527
run: ./build.sh -restore

0 commit comments

Comments
 (0)