From 6fd149877a51c3ad269958344103fd2409ba2390 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Dec 2025 22:01:58 +0000 Subject: [PATCH] Bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/cache](https://github.com/actions/cache) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index f912746..a3ba9b9 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -42,7 +42,7 @@ jobs: with: dotnet-version: '9.x' - name: Cache/Restore NuGets - uses: actions/cache@v4 + uses: actions/cache@v5 with: save-always: true path: @@ -124,13 +124,13 @@ jobs: -reportTypes:htmlInline - name: Upload code coverage report to artifacts if: matrix.os == 'ubuntu-latest' && steps.even-if-tests-fail.outputs.condition == 'true' && always() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ${{ env.CODE_COVERAGE_ARTIFACT_NAME }} path: ${{ steps.code-coverage-report-generator.outputs.test-coverage-report-dir }} - name: Upload test results to artifacts if: matrix.os == 'ubuntu-latest' && steps.even-if-tests-fail.outputs.condition == 'true' && always() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ${{ env.TEST_RESULTS_ARTIFACT_NAME }} path: ${{ steps.dotnet-test.outputs.test-results-dir }}