We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fd6e6a commit 5c69c05Copy full SHA for 5c69c05
1 file changed
.github/workflows/build.yml
@@ -10,21 +10,21 @@ jobs:
10
name: Build
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 17
17
uses: actions/setup-java@v1
18
19
java-version: 17
20
- name: Cache SonarCloud packages
21
- uses: actions/cache@v1
+ uses: actions/cache@v4
22
23
path: ~/.sonar/cache
24
key: ${{ runner.os }}-sonar
25
restore-keys: ${{ runner.os }}-sonar
26
- name: Cache Gradle packages
27
28
29
path: ~/.gradle/caches
30
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
0 commit comments