Skip to content

Commit

Permalink
.NET version was specified in GitHub Actions configs
Browse files Browse the repository at this point in the history
  • Loading branch information
litichevskiydv committed Jun 27, 2024
1 parent 3bc416e commit 5b134d4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/pushOrPullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: install dotnet 6.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x

- name: Install packages
run: dotnet restore
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: install dotnet 6.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x

- name: Install packages
run: dotnet restore
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/releasePrerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: install dotnet 6.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x

- name: Install packages
run: dotnet restore
Expand Down

0 comments on commit 5b134d4

Please sign in to comment.