Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 30851f1

Browse files
Bump actions/cache from 3 to 4
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent d0fba68 commit 30851f1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/setup-dotnet@v4
1818
with:
1919
dotnet-version: 8.x
20-
- uses: actions/cache@v3
20+
- uses: actions/cache@v4
2121
with:
2222
path: ~/.nuget/packages
2323
# Look to see if there is a cache hit for the corresponding requirements file

.github/workflows/sonarcloud.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ jobs:
4646
with:
4747
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
4848
- name: Cache SonarCloud packages
49-
uses: actions/cache@v3
49+
uses: actions/cache@v4
5050
with:
5151
path: ~/.sonar/cache
5252
key: ${{ runner.os }}-sonar
5353
restore-keys: ${{ runner.os }}-sonar
5454
- name: Cache SonarCloud scanner
5555
id: cache-sonar-scanner
56-
uses: actions/cache@v3
56+
uses: actions/cache@v4
5757
with:
5858
path: ./.sonar/scanner
5959
key: ${{ runner.os }}-sonar-scanner

0 commit comments

Comments
 (0)