We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13e75ae commit ada616fCopy full SHA for ada616f
1 file changed
.github/workflows/build.yml
@@ -10,21 +10,22 @@ jobs:
10
name: Build and analyze
11
runs-on: ubuntu-latest
12
steps:
13
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v6
14
with:
15
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
16
- name: Set up JDK 11
17
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v5
18
19
+ distribution: 'temurin'
20
java-version: 11
21
- name: Cache SonarCloud packages
- uses: actions/cache@v1
22
+ uses: actions/cache@v5
23
24
path: ~/.sonar/cache
25
key: ${{ runner.os }}-sonar
26
restore-keys: ${{ runner.os }}-sonar
27
- name: Cache Maven packages
28
29
30
path: ~/.m2
31
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
0 commit comments