Skip to content

Commit

Permalink
build: Update to .net8 in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkallesen committed Nov 15, 2023
1 parent 424014f commit 75bdec2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/post-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
with:
setAllVars: true

- name: ⚙️ Setup dotnet 6.0.x
- name: ⚙️ Setup dotnet 8.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'

- name: ⚙️ Set up JDK 17
uses: actions/setup-java@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pre-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
with:
fetch-depth: 0

- name: ⚙️ Setup dotnet 6.0.x
- name: ⚙️ Setup dotnet 8.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'

- name: 🧹 Clean
run: dotnet clean -c Release && dotnet nuget locals all --clear
Expand All @@ -43,10 +43,10 @@ jobs:
with:
fetch-depth: 0

- name: ⚙️ Setup dotnet 6.0.x
- name: ⚙️ Setup dotnet 8.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'

- name: 🔁 Restore packages
run: dotnet restore
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
with:
setAllVars: true

- name: ⚙️ Setup dotnet 6.0.x
- name: ⚙️ Setup dotnet 8.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'

- name: 🧹 Clean
run: dotnet clean -c Release && dotnet nuget locals all --clear
Expand Down

0 comments on commit 75bdec2

Please sign in to comment.