File tree Expand file tree Collapse file tree 5 files changed +8
-18
lines changed Expand file tree Collapse file tree 5 files changed +8
-18
lines changed Original file line number Diff line number Diff line change @@ -21,19 +21,13 @@ jobs:
21
21
22
22
steps :
23
23
- name : Checkout
24
- uses : actions/checkout@v3
24
+ uses : actions/checkout@v4
25
25
26
26
- name : Cache Docker Register
27
27
uses : actions/cache@v3
28
28
with :
29
29
path : /tmp/.buildx-cache
30
30
key : ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
31
- - name : Cache Maven packages
32
- uses : actions/cache@v3
33
- with :
34
- path : ~/.m2
35
- key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
36
- restore-keys : ${{ runner.os }}-m2
37
31
38
32
- name : Set up Docker Buildx
39
33
id : buildx
43
37
with :
44
38
distribution : ' zulu'
45
39
java-version : ' 17'
40
+ cache : ' maven'
46
41
47
42
- name : Create custom Maven Settings.xml
48
43
uses : whelk-io/maven-settings-xml-action@v21
Original file line number Diff line number Diff line change @@ -16,19 +16,13 @@ jobs:
16
16
17
17
steps :
18
18
- name : Checkout
19
- uses : actions/checkout@v3
19
+ uses : actions/checkout@v4
20
20
21
21
- name : Cache Docker Register
22
22
uses : actions/cache@v3
23
23
with :
24
24
path : /tmp/.buildx-cache
25
25
key : ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
26
- - name : Cache Maven packages
27
- uses : actions/cache@v3
28
- with :
29
- path : ~/.m2
30
- key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
31
- restore-keys : ${{ runner.os }}-m2
32
26
33
27
- name : Extract tag name
34
28
id : extract_tagname
41
35
with :
42
36
distribution : ' zulu'
43
37
java-version : ' 17'
38
+ cache : ' maven'
44
39
- name : Set up Docker Buildx
45
40
id : buildx
46
41
uses : docker/setup-buildx-action@v3
Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Checkout
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v4
15
15
- name : REUSE Compliance Check
16
16
uses : fsfe/reuse-action@v2
Original file line number Diff line number Diff line change 40
40
full_name : ${{ github.event.repository.full_name }}
41
41
env :
42
42
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
43
- - uses : actions/checkout@v3
43
+ - uses : actions/checkout@v4
44
44
with :
45
45
repository : ${{ github.event.workflow_run.head_repository.full_name }}
46
46
ref : ${{ github.event.workflow_run.head_branch }}
59
59
path : ~/.sonar/cache
60
60
key : ${{ runner.os }}-sonar
61
61
restore-keys : ${{ runner.os }}-sonar
62
+
62
63
- name : Cache Maven packages
63
64
uses : actions/cache@v3
64
65
with :
71
72
with :
72
73
distribution : ' zulu'
73
74
java-version : ' 17'
74
-
75
75
- name : Set Common Sonar Variables
76
76
id : sonar_env
77
77
run : |
Original file line number Diff line number Diff line change 26
26
if : ${{ (github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]') || (github.actor == 'dependabot[bot]' && github.event_name == 'pull_request_target') }}
27
27
steps :
28
28
- name : Checkout
29
- uses : actions/checkout@v3
29
+ uses : actions/checkout@v4
30
30
with :
31
31
fetch-depth : 0
32
32
You can’t perform that action at this time.
0 commit comments