Skip to content

Commit

Permalink
Install (and use) .NET 9.0.x in all GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegRa committed Nov 21, 2024
1 parent 8b22c08 commit d731507
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
- name: Checkout Tests
uses: actions/checkout@v4

- name: Setup .NET 8.0.x
- name: Setup .NET 9.0.x
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
dotnet-version: '9.0.x'

- name: Restore .NET Tools
run: dotnet tool restore
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lockfiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v4

- name: Setup .NET 8.0.x
- name: Setup .NET 9.0.x
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
dotnet-version: '9.0.x'

- name: Restore Dependencies
run: dotnet restore --force-evaluate
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v4

- name: Setup .NET 8.0.x
- name: Setup .NET 9.0.x
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
dotnet-version: '9.0.x'

- name: Dotnet Build
run: dotnet build -c Release
Expand Down

0 comments on commit d731507

Please sign in to comment.