Skip to content

Commit

Permalink
chore: Upgraded to .NET 8 as default (#52)
Browse files Browse the repository at this point in the history
* chore: Upgraded to .NET 8 as default

Signed-off-by: Martin Stühmer <[email protected]>

* fix: Upgraded all defualts

Signed-off-by: Martin Stühmer <[email protected]>

---------

Signed-off-by: Martin Stühmer <[email protected]>
  • Loading branch information
samtrion authored May 5, 2024
1 parent 8aa3715 commit 9715805
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cicd-dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ on:
dotnet-version:
required: false
type: string
default: 7.x
default: 8.x
dotnet-quality:
required: false
type: string
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
name: Version
uses: ./.github/workflows/step-dotnet-version.yml
with:
dotnet-version: ${{ inputs.dotnet-version || '7.x' }}
dotnet-version: ${{ inputs.dotnet-version || '8.x' }}
dotnet-quality: ${{ inputs.dotnet-quality || 'ga' }}

format:
Expand All @@ -72,7 +72,7 @@ jobs:
uses: ./.github/workflows/step-dotnet-format.yml
with:
dotnet-logging: ${{ inputs.dotnet-logging || 'quiet' }}
dotnet-version: ${{ inputs.dotnet-version || '7.x' }}
dotnet-version: ${{ inputs.dotnet-version || '8.x' }}
dotnet-quality: ${{ inputs.dotnet-quality || 'ga' }}
runs-on: ${{ inputs.runs-on-build || 'ubuntu-latest' }}
solution: ${{ inputs.solution }}
Expand All @@ -83,7 +83,7 @@ jobs:
uses: ./.github/workflows/step-dotnet-codeql.yml
with:
dotnet-logging: ${{ inputs.dotnet-logging || 'quiet' }}
dotnet-version: ${{ inputs.dotnet-version || '7.x' }}
dotnet-version: ${{ inputs.dotnet-version || '8.x' }}
dotnet-quality: ${{ inputs.dotnet-quality || 'ga' }}
runs-on: ${{ inputs.runs-on-build || 'ubuntu-latest' }}
solution: ${{ inputs.solution }}
Expand All @@ -98,7 +98,7 @@ jobs:
disableCoverageUpload: ${{ inputs.disableCoverageUpload || false }}
dotnet-logging: ${{ inputs.dotnet-logging || 'quiet' }}
dotnet-testfilter: ${{ inputs.dotnet-testfilter }}
dotnet-version: ${{ inputs.dotnet-version || '7.x' }}
dotnet-version: ${{ inputs.dotnet-version || '8.x' }}
dotnet-quality: ${{ inputs.dotnet-quality || 'ga' }}
runs-on: ${{ inputs.runs-on-tests || inputs.runs-on-build || 'ubuntu-latest' }}
solution: ${{ inputs.solution }}
Expand All @@ -113,7 +113,7 @@ jobs:
- format
with:
dotnet-logging: ${{ inputs.dotnet-logging || 'quiet' }}
dotnet-version: ${{ inputs.dotnet-version || '7.x' }}
dotnet-version: ${{ inputs.dotnet-version || '8.x' }}
dotnet-quality: ${{ inputs.dotnet-quality || 'ga' }}
runs-on: ${{ inputs.runs-on-build || 'ubuntu-latest' }}
solution: ${{ inputs.solution }}
Expand Down

0 comments on commit 9715805

Please sign in to comment.