Skip to content

Commit e2119fe

Browse files
committed
ci: setup .net 8
1 parent 710f440 commit e2119fe

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/compile.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
20-
- name: Setup .NET 7
20+
- name: Setup .NET 8
2121
uses: actions/setup-dotnet@v3
2222
with:
23-
dotnet-version: 7.0.*
23+
dotnet-version: '8.0.x'
2424
- name: Build with Nuke
2525
run: ./build.sh compile
2626
shell: bash

.github/workflows/publish.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717

18-
- name: Setup .NET 7
18+
- name: Setup .NET 8
1919
uses: actions/setup-dotnet@v3
2020
with:
21-
dotnet-version: 7.0.*
21+
dotnet-version: 8.0.*
2222

2323
- name: Publish to NuGet with Nuke
2424
run: ./build.sh push --nuget-api-key ${{ secrets.NUGET_API_KEY }}

0 commit comments

Comments
 (0)