Skip to content

Commit fb40fc3

Browse files
committed
Update GitHub Actions to use v5 and .NET 10.0.x
Upgraded actions/checkout and actions/setup-dotnet to v5 in release.yml. Set dotnet-version to '10.0.x' for both test and build jobs to ensure compatibility with the latest .NET SDK.
1 parent 7ce58dd commit fb40fc3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
test:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
13-
- uses: actions/setup-dotnet@v4
12+
- uses: actions/checkout@v5
13+
- uses: actions/setup-dotnet@v5
1414
with:
1515
dotnet-version: '10.0.x'
1616
- run: dotnet test TestProject -c Release
@@ -23,8 +23,8 @@ jobs:
2323
rid: [win-x64, win-arm64, linux-x64, osx-x64, osx-arm64]
2424
selfcontained: [true, false]
2525
steps:
26-
- uses: actions/checkout@v4
27-
- uses: actions/setup-dotnet@v4
26+
- uses: actions/checkout@v5
27+
- uses: actions/setup-dotnet@v5
2828
with:
2929
dotnet-version: '10.0.x'
3030
- name: Publish

0 commit comments

Comments
 (0)