Skip to content

Commit

Permalink
Update .NET version in GitHub Actions workflows
Browse files Browse the repository at this point in the history
Updated the .NET version from 7.0.x to 8.0.x in the GitHub Actions workflows. This change affects `feature.yml`, `master-pr.yml`, and `master.yml` files. The `dotnet-version` parameter in the `actions/setup-dotnet@v1` action has been updated accordingly. This ensures that the workflows now run with .NET 8.0.x.
  • Loading branch information
Brandon Moffett committed May 8, 2024
1 parent 780e2e0 commit a45bb28
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ jobs:
echo "CommitsSinceVersionSource: ${{ steps.gitversion.outputs.commitsSinceVersionSource }}"
echo "CommitDate: ${{ steps.gitversion.outputs.commitDate }}"
- name: Install .net7.0
- name: Install .net8.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: "7.0.x"
dotnet-version: "8.0.x"
include-prerelease: true

- name: Clear Nuget Feeds
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
with:
fetch-depth: 0

- name: Install .net7.0
- name: Install .net8.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: "7.0.x"
dotnet-version: "8.0.x"
include-prerelease: true

- name: Restore dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Install net7.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: "7.0.x"
dotnet-version: "8.0.x"
include-prerelease: true

- name: Clear Nuget Feeds
Expand Down

0 comments on commit a45bb28

Please sign in to comment.