Skip to content

Commit 618bcdb

Browse files
committed
Update GH workflows to use net8.0
1 parent 2e8c19d commit 618bcdb

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ on:
33
inputs:
44
dotnet-version:
55
required: false
6-
default: "6.0.x"
6+
default: "8.0.x"
77
description: "The .NET version to setup for the build"
88
type: string
99
dotnet-target:
1010
required: false
11-
default: "net6.0"
11+
default: "net8.0"
1212
description: "The .NET target to set for JPRM"
1313
type: string
1414

@@ -36,4 +36,4 @@ jobs:
3636
name: build-artifact
3737
retention-days: 30
3838
if-no-files-found: error
39-
path: ${{ steps.jprm.outputs.artifact }}
39+
path: ${{ steps.jprm.outputs.artifact }}

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup .NET
1717
uses: actions/setup-dotnet@v1
1818
with:
19-
dotnet-version: 6.0.x
19+
dotnet-version: 8.0.x
2020
- name: Restore dependencies
2121
run: dotnet restore
2222
- name: Build

.github/workflows/publish-nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup .NET
1616
uses: actions/setup-dotnet@v1
1717
with:
18-
dotnet-version: 6.0.x
18+
dotnet-version: 8.0.x
1919
- name: Restore dependencies
2020
run: dotnet restore
2121
- name: Build Dotnet
@@ -35,7 +35,7 @@ jobs:
3535
version: "0.0.0.9000"
3636
verbosity: debug
3737
path: .
38-
dotnet-target: "net6.0"
38+
dotnet-target: "net8.0"
3939
output: _dist
4040
- name: Prepare GitHub Release assets
4141
run: |-

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
build:
1111
uses: ./.github/workflows/build.yml
1212
with:
13-
dotnet-version: "6.0.*"
14-
dotnet-target: "net6.0"
13+
dotnet-version: "8.0.*"
14+
dotnet-target: "net8.0"
1515
upload:
1616
runs-on: ubuntu-latest
1717
needs:

0 commit comments

Comments
 (0)