File tree 4 files changed +21
-16
lines changed
4 files changed +21
-16
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,14 @@ jobs:
14
14
registry.username : ${{ secrets.REGISTRY_USERNAME }}
15
15
registry.password : ${{ secrets.REGISTRY_PASSWORD }}
16
16
steps :
17
- - uses : actions/checkout@v2
17
+ - uses : actions/checkout@v4
18
18
- name : Set up JDK 17
19
- uses : actions/setup-java@v1
19
+ uses : actions/setup-java@v4
20
20
with :
21
+ distribution : ' zulu'
21
22
java-version : 17
22
23
- name : Cache Gradle packages
23
- uses : actions/cache@v2
24
+ uses : actions/cache@v4
24
25
with :
25
26
path : ~/.gradle/caches
26
27
key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
@@ -32,13 +33,14 @@ jobs:
32
33
build :
33
34
runs-on : ubuntu-latest
34
35
steps :
35
- - uses : actions/checkout@v2
36
+ - uses : actions/checkout@v4
36
37
- name : Set up JDK 17
37
- uses : actions/setup-java@v1
38
+ uses : actions/setup-java@v4
38
39
with :
40
+ distribution : ' zulu'
39
41
java-version : 17
40
42
- name : Cache Gradle packages
41
- uses : actions/cache@v2
43
+ uses : actions/cache@v4
42
44
with :
43
45
path : ~/.gradle/caches
44
46
key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
Original file line number Diff line number Diff line change @@ -29,16 +29,17 @@ jobs:
29
29
30
30
steps :
31
31
- name : Checkout repository
32
- uses : actions/checkout@v3
32
+ uses : actions/checkout@v4
33
33
34
34
- name : Set up JDK 17
35
- uses : actions/setup-java@v1
35
+ uses : actions/setup-java@v4
36
36
with :
37
+ distribution : ' zulu'
37
38
java-version : 17
38
39
39
40
# Initializes the CodeQL tools for scanning.
40
41
- name : Initialize CodeQL
41
- uses : github/codeql-action/init@v2
42
+ uses : github/codeql-action/init@v3
42
43
with :
43
44
languages : ${{ matrix.language }}
44
45
# If you wish to specify custom queries, you can do so here or in a config file.
52
53
run : ./gradlew test
53
54
54
55
- name : Perform CodeQL Analysis
55
- uses : github/codeql-action/analyze@v2
56
+ uses : github/codeql-action/analyze@v3
56
57
with :
57
58
category : " /language:${{matrix.language}}"
Original file line number Diff line number Diff line change @@ -17,13 +17,14 @@ jobs:
17
17
OSSRH_GPG_SECRET_KEY : ${{ secrets.OSSRH_GPG_SECRET_KEY }}
18
18
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
19
19
steps :
20
- - uses : actions/checkout@v2
20
+ - uses : actions/checkout@v4
21
21
- name : Set up JDK 17
22
- uses : actions/setup-java@v1
22
+ uses : actions/setup-java@v4
23
23
with :
24
+ distribution : ' zulu'
24
25
java-version : 17
25
26
- name : Cache Gradle packages
26
- uses : actions/cache@v2
27
+ uses : actions/cache@v4
27
28
with :
28
29
path : ~/.gradle/caches
29
30
key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
Original file line number Diff line number Diff line change 13
13
OSSRH_GPG_SECRET_KEY : ${{ secrets.OSSRH_GPG_SECRET_KEY }}
14
14
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v4
17
17
- name : Build Workflow Dispatch
18
18
uses :
convictional/[email protected]
19
19
with :
@@ -26,11 +26,12 @@ jobs:
26
26
trigger_workflow : true
27
27
wait_workflow : true
28
28
- name : Set up JDK 17
29
- uses : actions/setup-java@v1
29
+ uses : actions/setup-java@v4
30
30
with :
31
+ distribution : ' zulu'
31
32
java-version : 17
32
33
- name : Cache Gradle packages
33
- uses : actions/cache@v2
34
+ uses : actions/cache@v4
34
35
with :
35
36
path : ~/.gradle/caches
36
37
key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
You can’t perform that action at this time.
0 commit comments