File tree 5 files changed +10
-10
lines changed
5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 14
14
uses : actions/setup-java@v1
15
15
with :
16
16
java-version : ${{ env.JAVA_VERSION }}
17
- - uses : actions/checkout@v2
17
+ - uses : actions/checkout@v4
18
18
- name : Check
19
19
run : ./gradlew spotlessCheck
20
20
26
26
uses : actions/setup-java@v1
27
27
with :
28
28
java-version : ${{ env.JAVA_VERSION }}
29
- - uses : actions/checkout@v2
29
+ - uses : actions/checkout@v4
30
30
- name : Check
31
31
run : ./gradlew test
32
32
38
38
uses : actions/setup-java@v1
39
39
with :
40
40
java-version : ${{ env.JAVA_VERSION }}
41
- - uses : actions/checkout@v2
41
+ - uses : actions/checkout@v4
42
42
with :
43
43
fetch-depth : 2
44
44
- name : Check
Original file line number Diff line number Diff line change 15
15
name : SonarCloud
16
16
runs-on : ubuntu-latest
17
17
steps :
18
- - uses : actions/checkout@v2
18
+ - uses : actions/checkout@v4
19
19
with :
20
20
# Shallow clones should be disabled for a better relevancy of analysis
21
21
fetch-depth : 0
@@ -24,13 +24,13 @@ jobs:
24
24
with :
25
25
java-version : ${{ env.JAVA_VERSION }}
26
26
- name : Cache SonarCloud packages
27
- uses : actions/cache@v1
27
+ uses : actions/cache@v4
28
28
with :
29
29
path : ~/.sonar/cache
30
30
key : ${{ runner.os }}-sonar
31
31
restore-keys : ${{ runner.os }}-sonar
32
32
- name : Cache Gradle packages
33
- uses : actions/cache@v1
33
+ uses : actions/cache@v4
34
34
with :
35
35
path : ~/.gradle/caches
36
36
key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
64
64
with :
65
65
java-version : ${{ env.JAVA_VERSION }}
66
66
- name : Checkout repository
67
- uses : actions/checkout@v2
67
+ uses : actions/checkout@v4
68
68
with :
69
69
# We must fetch at least the immediate parents so that if this is
70
70
# a pull request then we can check out the head.
Original file line number Diff line number Diff line change 21
21
shell : bash
22
22
run : echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
23
23
id : extract_branch
24
- - uses : actions/checkout@v2
24
+ - uses : actions/checkout@v4
25
25
with :
26
26
fetch-depth : 0
27
27
- name : Build and Publish Docker Image
Original file line number Diff line number Diff line change 14
14
uses : actions/setup-java@v1
15
15
with :
16
16
java-version : ${{ env.JAVA_VERSION }}
17
- - uses : actions/checkout@v2
17
+ - uses : actions/checkout@v4
18
18
with :
19
19
fetch-depth : 0
20
20
- name : Docker Verify
Original file line number Diff line number Diff line change 23
23
with :
24
24
java-version : ${{ env.JAVA_VERSION }}
25
25
26
- - uses : actions/checkout@v2
26
+ - uses : actions/checkout@v4
27
27
28
28
- name : Build shadow jar
29
29
run : ./gradlew shadowJar
You can’t perform that action at this time.
0 commit comments