From 08425a0c88f9196f2a50329c055cc4c0ad706c4d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 29 Mar 2026 10:03:24 +0000 Subject: [PATCH] Bump the github-actions group with 4 updates Bumps the github-actions group with 4 updates: [danielpalme/ReportGenerator-GitHub-Action](https://github.com/danielpalme/reportgenerator-github-action), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [marocchino/sticky-pull-request-comment](https://github.com/marocchino/sticky-pull-request-comment). Updates `danielpalme/ReportGenerator-GitHub-Action` from 5.5.1 to 5.5.4 - [Release notes](https://github.com/danielpalme/reportgenerator-github-action/releases) - [Commits](https://github.com/danielpalme/reportgenerator-github-action/compare/5.5.1...5.5.4) 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) Updates `marocchino/sticky-pull-request-comment` from 2 to 3 - [Release notes](https://github.com/marocchino/sticky-pull-request-comment/releases) - [Commits](https://github.com/marocchino/sticky-pull-request-comment/compare/v2...v3) --- updated-dependencies: - dependency-name: danielpalme/ReportGenerator-GitHub-Action dependency-version: 5.5.4 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 - dependency-name: marocchino/sticky-pull-request-comment dependency-version: '3' 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 ++++---- .github/workflows/pr-code-coverage-comment.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 5422d76..e24a880 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -32,7 +32,7 @@ jobs: run: dotnet test --configuration Release --no-build --collect:"XPlat Code Coverage" --results-directory ./code-coverage - name: ReportGenerator - uses: danielpalme/ReportGenerator-GitHub-Action@5.5.1 + uses: danielpalme/ReportGenerator-GitHub-Action@5.5.4 with: reports: coverage/**/coverage.cobertura.xml targetdir: coveragereport @@ -45,7 +45,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/ @@ -55,7 +55,7 @@ jobs: run: dotnet pack --configuration Release --no-build -o .${{env.DOTNET_ROOT}}/NuGet - name: Upload NuGet artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: NuGet path: ${{env.DOTNET_ROOT}}/NuGet @@ -83,7 +83,7 @@ jobs: steps: - name: Download artifact from build job - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: NuGet diff --git a/.github/workflows/pr-code-coverage-comment.yml b/.github/workflows/pr-code-coverage-comment.yml index abc104f..72b50fd 100644 --- a/.github/workflows/pr-code-coverage-comment.yml +++ b/.github/workflows/pr-code-coverage-comment.yml @@ -28,7 +28,7 @@ jobs: $pr_number = (cat PullRequestNumber) "pr_number=$pr_number" >> $env:GITHUB_OUTPUT - - uses: marocchino/sticky-pull-request-comment@v2 + - uses: marocchino/sticky-pull-request-comment@v3 with: recreate: true number: ${{ steps.get-pr-number.outputs.pr_number }}