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