Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 9 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,11 @@ jobs:

# Install the .NET SDK indicated in the global.json file
- name: ⚙️ Setup dotnet versions
uses: actions/setup-dotnet@v5
uses: fast-actions/setup-dotnet@v1
with:
dotnet-version: |
aspnetcore-version: |
8.0.x
9.0.x
10.0.x

- name: ⚙️ Setup GIT versioning
uses: dotnet/nbgv@v0.4.2
Expand Down Expand Up @@ -90,7 +89,7 @@ jobs:
needs: [ create-nuget ]
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v5
uses: fast-actions/setup-dotnet@v1

- uses: actions/download-artifact@v7
with:
Expand Down Expand Up @@ -122,12 +121,11 @@ jobs:
fetch-depth: 0

- name: ⚙️ Setup dotnet versions
uses: actions/setup-dotnet@v5
uses: fast-actions/setup-dotnet@v1
with:
dotnet-version: |
aspnetcore-version: |
8.0.x
9.0.x
10.0.x

- name: ⚙️ Restore packages and tools
run: |
Expand Down Expand Up @@ -156,10 +154,7 @@ jobs:
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer

- name: ⚙️ Setup dotnet
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
9.0.x
uses: fast-actions/setup-dotnet@v1

- uses: actions/download-artifact@v7
with:
Expand Down Expand Up @@ -216,12 +211,11 @@ jobs:
fetch-depth: 0

- name: ⚙️ Setup dotnet versions
uses: actions/setup-dotnet@v5
uses: fast-actions/setup-dotnet@v1
with:
dotnet-version: |
aspnetcore-version: |
8.0.x
9.0.x
10.0.x

- name: ⚙️ Setup GIT versioning
uses: dotnet/nbgv@v0.4.2
Expand Down Expand Up @@ -281,7 +275,7 @@ jobs:
path: ${{ env.NUGET_DIRECTORY }}

- name: Setup .NET Core
uses: actions/setup-dotnet@v5
uses: fast-actions/setup-dotnet@v1

- name: 🛠️ NuGet login
uses: NuGet/login@v1
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,11 @@ jobs:
RELEASE_NOTES: ${{ steps.changelog_reader.outputs.changes }}

- name: ⚙️ Setup dotnet versions
uses: actions/setup-dotnet@v5
uses: fast-actions/setup-dotnet@v1
with:
dotnet-version: |
aspnetcore-version: |
8.0.x
9.0.x
10.0.x

- name: 🎨 Setup color
run: |
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,7 @@ jobs:
setAllVars: true

- name: ⚙️ Setup dotnet versions
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
9.0.x
10.0.x
uses: fast-actions/setup-dotnet@v1

- name: 🛠️ Update changelog
uses: thomaseizinger/keep-a-changelog-new-release@3.1.0
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"rollForward": "latestMajor",
"allowPrerelease": true
"allowPrerelease": false
}
}
Loading