We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3abcf56 commit 10b8af3Copy full SHA for 10b8af3
.github/workflows/sonarqube.yml
@@ -9,21 +9,21 @@ jobs:
9
runs-on: windows-latest
10
steps:
11
- name: Set up JDK 11
12
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v4
13
with:
14
java-version: 1.11
15
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
16
17
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
18
- name: Cache SonarCloud packages
19
- uses: actions/cache@v1
+ uses: actions/cache@v4
20
21
path: ~\sonar\cache
22
key: ${{ runner.os }}-sonar
23
restore-keys: ${{ runner.os }}-sonar
24
- name: Cache SonarCloud scanner
25
id: cache-sonar-scanner
26
27
28
path: .\.sonar\scanner
29
key: ${{ runner.os }}-sonar-scanner
0 commit comments