From 91338154e524dc3fc1be36cc73bc4a1c574540a3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 11:39:01 +0000 Subject: [PATCH] Bump the github-actions group with 3 updates Bumps the github-actions group with 3 updates: [danielpalme/ReportGenerator-GitHub-Action](https://github.com/danielpalme/reportgenerator-github-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `danielpalme/ReportGenerator-GitHub-Action` from 5.5.1 to 5.5.2 - [Release notes](https://github.com/danielpalme/reportgenerator-github-action/releases) - [Commits](https://github.com/danielpalme/reportgenerator-github-action/compare/5.5.1...5.5.2) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) --- updated-dependencies: - dependency-name: danielpalme/ReportGenerator-GitHub-Action dependency-version: 5.5.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 4333612..94f367a 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -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 @@ -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/ @@ -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 @@ -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