Skip to content

Commit 67bd032

Browse files
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](actions/cache@v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@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] <[email protected]>
1 parent 1a32c27 commit 67bd032

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
dotnet-version: '9.x'
4444
- name: Cache/Restore NuGets
45-
uses: actions/cache@v4
45+
uses: actions/cache@v5
4646
with:
4747
save-always: true
4848
path:
@@ -124,13 +124,13 @@ jobs:
124124
-reportTypes:htmlInline
125125
- name: Upload code coverage report to artifacts
126126
if: matrix.os == 'ubuntu-latest' && steps.even-if-tests-fail.outputs.condition == 'true' && always()
127-
uses: actions/upload-artifact@v5
127+
uses: actions/upload-artifact@v6
128128
with:
129129
name: ${{ env.CODE_COVERAGE_ARTIFACT_NAME }}
130130
path: ${{ steps.code-coverage-report-generator.outputs.test-coverage-report-dir }}
131131
- name: Upload test results to artifacts
132132
if: matrix.os == 'ubuntu-latest' && steps.even-if-tests-fail.outputs.condition == 'true' && always()
133-
uses: actions/upload-artifact@v5
133+
uses: actions/upload-artifact@v6
134134
with:
135135
name: ${{ env.TEST_RESULTS_ARTIFACT_NAME }}
136136
path: ${{ steps.dotnet-test.outputs.test-results-dir }}

0 commit comments

Comments
 (0)