Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: dotnet test --configuration Release --no-build -- --coverage --coverage-output-format cobertura --coverage-output ./code-coverage

- name: ReportGenerator
uses: danielpalme/ReportGenerator-GitHub-Action@5.5.1
uses: danielpalme/ReportGenerator-GitHub-Action@5.5.2
with:
reports: code-coverage/**/coverage.cobertura.xml
targetdir: coveragereport
Expand All @@ -51,7 +51,7 @@ jobs:
echo ${{ github.event.number }} > ./coveragereport/PullRequestNumber

- name: Upload Code Coverage Report
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: CodeCoverage
path: coveragereport/
Expand All @@ -61,7 +61,7 @@ jobs:
run: dotnet pack --configuration Release --no-build -o ./NuGet

- name: Upload NuGet artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: NuGet
path: ./NuGet
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:

steps:
- name: Download artifact from build job
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: NuGet

Expand Down
Loading