Skip to content

Commit

Permalink
Update GitHub Actions workflows to use .NET 8.0 SDK
Browse files Browse the repository at this point in the history
- Aligned DOTNET_SDK_VERSION with the upgraded project framework across CI, publish, and test integration workflows.
- Ensured consistency in .NET versioning to facilitate correct environment setup for build and test processes.
  • Loading branch information
maxisoft committed May 4, 2024
1 parent a367e4d commit d1afd69
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push, pull_request]
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_NOLOGO: true
DOTNET_SDK_VERSION: 7.0.x
DOTNET_SDK_VERSION: 8.0.x
DOTNET_FRAMEWORK: net7.0

jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ env:
CONFIGURATION: Release
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_NOLOGO: true
DOTNET_SDK_VERSION: 7.0.x
NET_CORE_VERSION: net7.0
DOTNET_SDK_VERSION: 8.0.x
NET_CORE_VERSION: net8.0
NET_FRAMEWORK_VERSION: net48
PLUGIN_NAME: ASFFreeGames

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_NOLOGO: true
DOTNET_SDK_VERSION: 7.0.x
DOTNET_SDK_VERSION: 8.0.x

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand Down

0 comments on commit d1afd69

Please sign in to comment.