Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

# Install the .NET SDK indicated in the global.json file
- name: ⚙️ Setup dotnet versions
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
needs: [ create-nuget ]
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5

- uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
fetch-depth: 0

- name: ⚙️ Setup dotnet versions
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer

- name: ⚙️ Setup dotnet
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
9.0.x
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
fetch-depth: 0

- name: ⚙️ Setup dotnet versions
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:
path: ${{ env.NUGET_DIRECTORY }}

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

- name: 🛠️ Upload library to GitHub Package Repository
run: dotnet nuget push ${{ env.NUGET_DIRECTORY }}/*.nupkg -k ${{ secrets.GITHUB_TOKEN }} -s https://nuget.pkg.github.com/bunit-dev/index.json --skip-duplicate --no-symbols
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
RELEASE_NOTES: ${{ steps.changelog_reader.outputs.changes }}

- name: ⚙️ Setup dotnet versions
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
setAllVars: true

- name: ⚙️ Setup dotnet versions
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
Expand Down
Loading