Skip to content

Commit

Permalink
Updated GitHub actions to .NET 8 SDK.
Browse files Browse the repository at this point in the history
  • Loading branch information
AraHaan committed Feb 19, 2024
1 parent 50dd91d commit 24585f9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codacy-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@main

- name: Install latest .NET 6 SDK
- name: Install latest .NET 8 SDK
uses: Elskom/setup-latest-dotnet@main
with:
VERSION_MAJOR: '6'
VERSION_MAJOR: '8'
VERSION_BAND: '2xx'

- name: Restore and Build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dotnetcore-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
steps:
- uses: actions/checkout@main

- name: Install latest .NET 6 SDK
- name: Install latest .NET 8 SDK
uses: Elskom/setup-latest-dotnet@main
with:
VERSION_MAJOR: '6'
VERSION_MAJOR: '8'
VERSION_BAND: '2xx'

- name: Restore, Build, and pack
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dotnetcore-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
steps:
- uses: actions/checkout@main

- name: Install latest .NET 6 SDK
- name: Install latest .NET 8 SDK
uses: Elskom/setup-latest-dotnet@main
with:
VERSION_MAJOR: '6'
VERSION_MAJOR: '8'
VERSION_BAND: '2xx'

- name: Restore, Build, and pack
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:
- uses: actions/checkout@main

- name: Install latest .NET 6 SDK
- name: Install latest .NET 8 SDK
uses: Elskom/setup-latest-dotnet@main
with:
VERSION_MAJOR: '6'
VERSION_MAJOR: '8'
VERSION_BAND: '2xx'

- name: Restore, Build, and pack
Expand Down

0 comments on commit 24585f9

Please sign in to comment.