File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,21 +52,21 @@ jobs:
52
52
key : ${{ runner.os }}-sonar
53
53
restore-keys : ${{ runner.os }}-sonar
54
54
- name : Cache SonarCloud packages
55
- uses : actions/cache@v3
55
+ uses : actions/cache@v4
56
56
with :
57
57
path : ~\sonar\cache
58
58
key : ${{ runner.os }}-sonar
59
59
restore-keys : ${{ runner.os }}-sonar
60
60
- name : Cache SonarCloud scanner
61
61
id : cache-sonar-scanner
62
- uses : actions/cache@v3
62
+ uses : actions/cache@v4
63
63
with :
64
64
path : .\.sonar\scanner
65
65
key : ${{ runner.os }}-sonar-scanner
66
66
restore-keys : ${{ runner.os }}-sonar-scanner
67
67
- name : Install SonarCloud scanner
68
68
if : steps.cache-sonar-scanner.outputs.cache-hit != 'true'
69
- shell : powershell
69
+ shell : pwsh
70
70
run : |
71
71
New-Item -Path .\.sonar\scanner -ItemType Directory
72
72
dotnet tool update dotnet-sonarscanner --tool-path .\.sonar\scanner
You can’t perform that action at this time.
0 commit comments