Skip to content

Commit 952f21e

Browse files
Bump actions/cache from 4 to 5 (#209)
Bumps [actions/cache](https://github.com/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) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 46aadd8 commit 952f21e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/sonarcloud.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@ jobs:
2929
dotnet-version: |
3030
9.0
3131
- name: Cache SonarCloud packages
32-
uses: actions/cache@v4
32+
uses: actions/cache@v5
3333
with:
3434
path: ~/sonar/cache
3535
key: ${{ runner.os }}-sonar
3636
restore-keys: ${{ runner.os }}-sonar
3737
- name: Cache SonarCloud scanner
3838
id: cache-sonar-scanner
39-
uses: actions/cache@v4
39+
uses: actions/cache@v5
4040
with:
4141
path: ./.sonar/scanner
4242
key: ${{ runner.os }}-sonar-scanner
4343
restore-keys: ${{ runner.os }}-sonar-scanner
4444
- name: Cache dotNet code coverage
4545
id: cache-sonar-coverage
46-
uses: actions/cache@v4
46+
uses: actions/cache@v5
4747
with:
4848
path: ./.sonar/coverage
4949
key: ${{ runner.os }}-sonar-coverage

0 commit comments

Comments
 (0)