Skip to content

Commit 60ddd19

Browse files
committed
Update CI to use .NET 10
1 parent 7a8cd39 commit 60ddd19

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 0
2222

23-
- name: Install .NET 9.0
24-
uses: actions/setup-dotnet@v4
23+
- name: Install .NET 10.0
24+
uses: actions/setup-dotnet@v5
2525
with:
26-
dotnet-version: '9.0.x'
26+
dotnet-version: '10.0.x'
2727

2828
- name: Build and Test (Debug)
2929
run: dotnet test src -c Debug
@@ -32,4 +32,4 @@ jobs:
3232
if: github.event_name == 'push'
3333
shell: bash
3434
run: |
35-
./src/dotnet-releaser/bin/Debug/net9.0/dotnet-releaser run --nuget-token "${{secrets.NUGET_TOKEN}}" --github-token "${{secrets.GITHUB_TOKEN}}" src/dotnet-releaser.toml
35+
./src/dotnet-releaser/bin/Debug/net10.0/dotnet-releaser run --nuget-token "${{secrets.NUGET_TOKEN}}" --github-token "${{secrets.GITHUB_TOKEN}}" src/dotnet-releaser.toml

0 commit comments

Comments
 (0)