Skip to content

Commit ec69cc5

Browse files
committed
actions/setup-dotnet@v5
1 parent 6519a57 commit ec69cc5

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.github/workflows/box2d-docs-github.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414

1515
steps:
1616
- name: .NET SDK Setup
17-
uses: actions/setup-dotnet@v4
17+
uses: actions/setup-dotnet@v5
1818
with:
19-
dotnet-version: 9.x
19+
dotnet-version: 10.x
2020

2121
- name: Checkout Box2D.NET
2222
uses: actions/checkout@v4

.github/workflows/dotnet.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ${{ matrix.os }}
2929
strategy:
3030
matrix:
31-
dotnet-version: [ '8', '9' ]
31+
dotnet-version: [ '8', '9', '10' ]
3232
os: [ windows-latest, ubuntu-latest, macos-latest ]
3333

3434
steps:
@@ -37,11 +37,12 @@ jobs:
3737
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer
3838

3939
- name: Setup .NET
40-
uses: actions/setup-dotnet@v4
40+
uses: actions/setup-dotnet@v5
4141
with:
4242
dotnet-version: |
4343
8
4444
9
45+
10
4546
4647
- name: Restore dependencies
4748
run: dotnet restore

.github/workflows/nuget.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer
3434

3535
- name: Setup Dotnet
36-
uses: actions/setup-dotnet@v4
36+
uses: actions/setup-dotnet@v5
3737
with:
38-
dotnet-version: '9.x'
38+
dotnet-version: '10.x'
3939

4040
- name: restore dependencies
4141
run: dotnet restore

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer
1616

1717
- name: Setup Dotnet
18-
uses: actions/setup-dotnet@v4
18+
uses: actions/setup-dotnet@v5
1919
with:
20-
dotnet-version: '9.x'
20+
dotnet-version: '10.x'
2121

2222
- name: restore dependencies
2323
run: dotnet restore

0 commit comments

Comments
 (0)