Skip to content

Commit

Permalink
Update build workflows to use .NET 8
Browse files Browse the repository at this point in the history
  • Loading branch information
sondreb committed Apr 9, 2024
1 parent 354e19d commit f3dc800
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
6.0.x
8.0.x
- name: Setup Node.js (${{ matrix.node_version }})
uses: actions/setup-node@v1
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ jobs:

- uses: actions/checkout@v1

- name: Setup .NET Core
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0'
dotnet-version: |
8.0.x
- name: Restore
run: dotnet restore ${{env.SOLUTION_PATH}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
6.0.x
8.0.x
- name: Log Variables
run: |
Expand Down

0 comments on commit f3dc800

Please sign in to comment.