File tree 6 files changed +30
-30
lines changed
6 files changed +30
-30
lines changed Original file line number Diff line number Diff line change 8
8
9
9
steps :
10
10
- name : checkout repo
11
- uses : actions/checkout@v3
11
+ uses : actions/checkout@v4
12
12
13
13
- name : Use Node.js ${{ matrix.node-version }}
14
14
uses : actions/setup-node@v1
15
15
with :
16
16
node-version : ' 10.11.0'
17
17
18
18
- name : Cache local Maven repository
19
- uses : actions/cache@v3
19
+ uses : actions/cache@v4
20
20
with :
21
21
path : ~/.m2/repository
22
22
key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
23
23
restore-keys : |
24
24
${{ runner.os }}-maven-
25
25
26
26
- name : Cache local Go modules
27
- uses : actions/cache@v3
27
+ uses : actions/cache@v4
28
28
with :
29
29
path : ~/go/pkg/mod
30
30
key : ${{ runner.os }}-gomod-${{ hashFiles('**/go.mod') }}
@@ -40,10 +40,10 @@ jobs:
40
40
41
41
- name : Archive artifacts
42
42
continue-on-error : true
43
- uses : actions/upload-artifact@v3
43
+ uses : actions/upload-artifact@v4
44
44
if : always()
45
45
with :
46
- name : artifact
46
+ name : artifact-${{ matrix.runs-on }}
47
47
path : |
48
48
**/target/artifacts/*
49
49
**/target/logs/*
Original file line number Diff line number Diff line change @@ -22,21 +22,21 @@ jobs:
22
22
23
23
steps :
24
24
- name : checkout repo
25
- uses : actions/checkout@v3
25
+ uses : actions/checkout@v4
26
26
27
27
- name : Use Node.js ${{ matrix.node-version }}
28
28
uses : actions/setup-node@v1
29
29
with :
30
30
node-version : ' 10.11.0'
31
31
32
32
- name : Cache local Maven repository
33
- uses : actions/cache@v3
33
+ uses : actions/cache@v4
34
34
with :
35
35
path : ~/.m2/repository
36
36
key : ${{ runner.os }}-maven-java11-${{ hashFiles('**/pom.xml') }}
37
37
38
38
- name : Cache local Go modules
39
- uses : actions/cache@v3
39
+ uses : actions/cache@v4
40
40
with :
41
41
path : ~/go/pkg/mod
42
42
key : ${{ runner.os }}-gomod-${{ hashFiles('**/go.mod') }}
@@ -55,10 +55,10 @@ jobs:
55
55
56
56
- name : Archive artifacts
57
57
continue-on-error : true
58
- uses : actions/upload-artifact@v3
58
+ uses : actions/upload-artifact@v4
59
59
if : always()
60
60
with :
61
- name : artifact
61
+ name : artifact-${{ matrix.runs-on }}
62
62
path : |
63
63
**/target/surefire-reports/*
64
64
**/target/artifacts/*
Original file line number Diff line number Diff line change @@ -33,21 +33,21 @@ jobs:
33
33
34
34
steps :
35
35
- name : checkout repo
36
- uses : actions/checkout@v3
36
+ uses : actions/checkout@v4
37
37
38
38
- name : Use Node.js ${{ matrix.node-version }}
39
39
uses : actions/setup-node@v1
40
40
with :
41
41
node-version : ' 10.11.0'
42
42
43
43
- name : Cache local Maven repository
44
- uses : actions/cache@v3
44
+ uses : actions/cache@v4
45
45
with :
46
46
path : ~/.m2/repository
47
47
key : ${{ runner.os }}-maven-java11-${{ hashFiles('**/pom.xml') }}
48
48
49
49
- name : Cache local Go modules
50
- uses : actions/cache@v3
50
+ uses : actions/cache@v4
51
51
with :
52
52
path : ~/go/pkg/mod
53
53
key : ${{ runner.os }}-gomod-${{ hashFiles('**/go.mod') }}
@@ -65,10 +65,10 @@ jobs:
65
65
66
66
- name : Archive artifacts
67
67
continue-on-error : true
68
- uses : actions/upload-artifact@v3
68
+ uses : actions/upload-artifact@v4
69
69
if : always()
70
70
with :
71
- name : artifact
71
+ name : artifact-${{ matrix.runs-on }}
72
72
path : |
73
73
**/target/surefire-reports/*
74
74
**/target/artifacts/*
Original file line number Diff line number Diff line change @@ -26,21 +26,21 @@ jobs:
26
26
27
27
steps :
28
28
- name : checkout repo
29
- uses : actions/checkout@v3
29
+ uses : actions/checkout@v4
30
30
31
31
- name : Use Node.js ${{ matrix.node-version }}
32
32
uses : actions/setup-node@v1
33
33
with :
34
34
node-version : ' 10.11.0'
35
35
36
36
- name : Cache local Maven repository
37
- uses : actions/cache@v3
37
+ uses : actions/cache@v4
38
38
with :
39
39
path : ~/.m2/repository
40
40
key : ${{ runner.os }}-maven-java11-${{ hashFiles('**/pom.xml') }}
41
41
42
42
- name : Cache local Go modules
43
- uses : actions/cache@v3
43
+ uses : actions/cache@v4
44
44
with :
45
45
path : ~/go/pkg/mod
46
46
key : ${{ runner.os }}-gomod-${{ hashFiles('**/go.mod') }}
@@ -60,10 +60,10 @@ jobs:
60
60
61
61
- name : Archive artifacts
62
62
continue-on-error : true
63
- uses : actions/upload-artifact@v3
63
+ uses : actions/upload-artifact@v4
64
64
if : always()
65
65
with :
66
- name : artifact
66
+ name : artifact-${{ matrix.runs-on }}
67
67
path : |
68
68
**/target/surefire-reports/*
69
69
**/target/artifacts/*
Original file line number Diff line number Diff line change @@ -24,21 +24,21 @@ jobs:
24
24
25
25
steps :
26
26
- name : checkout repo
27
- uses : actions/checkout@v3
27
+ uses : actions/checkout@v4
28
28
29
29
- name : Use Node.js ${{ matrix.node-version }}
30
30
uses : actions/setup-node@v1
31
31
with :
32
32
node-version : ' 10.11.0'
33
33
34
34
- name : Cache local Maven repository
35
- uses : actions/cache@v3
35
+ uses : actions/cache@v4
36
36
with :
37
37
path : ~/.m2/repository
38
38
key : ${{ runner.os }}-maven-java11-${{ hashFiles('**/pom.xml') }}
39
39
40
40
- name : Cache local Go modules
41
- uses : actions/cache@v3
41
+ uses : actions/cache@v4
42
42
with :
43
43
path : ~/go/pkg/mod
44
44
key : ${{ runner.os }}-gomod-${{ hashFiles('**/go.mod') }}
@@ -56,10 +56,10 @@ jobs:
56
56
57
57
- name : Archive artifacts
58
58
continue-on-error : true
59
- uses : actions/upload-artifact@v3
59
+ uses : actions/upload-artifact@v4
60
60
if : always()
61
61
with :
62
- name : artifact
62
+ name : artifact-${{ matrix.runs-on }}
63
63
path : |
64
64
**/target/surefire-reports/*
65
65
**/target/artifacts/*
Original file line number Diff line number Diff line change @@ -21,21 +21,21 @@ jobs:
21
21
22
22
steps :
23
23
- name : checkout repo
24
- uses : actions/checkout@v3
24
+ uses : actions/checkout@v4
25
25
26
26
- name : Use Node.js ${{ matrix.node-version }}
27
27
uses : actions/setup-node@v1
28
28
with :
29
29
node-version : ' 10.11.0'
30
30
31
31
- name : Cache local Maven repository
32
- uses : actions/cache@v3
32
+ uses : actions/cache@v4
33
33
with :
34
34
path : ~/.m2/repository
35
35
key : ${{ runner.os }}-maven-java11-${{ hashFiles('**/pom.xml') }}
36
36
37
37
- name : Cache local Go modules
38
- uses : actions/cache@v3
38
+ uses : actions/cache@v4
39
39
with :
40
40
path : ~/go/pkg/mod
41
41
key : ${{ runner.os }}-gomod-${{ hashFiles('**/go.mod') }}
@@ -53,10 +53,10 @@ jobs:
53
53
54
54
- name : Archive artifacts
55
55
continue-on-error : true
56
- uses : actions/upload-artifact@v3
56
+ uses : actions/upload-artifact@v4
57
57
if : always()
58
58
with :
59
- name : artifact
59
+ name : artifact-${{ matrix.runs-on }}
60
60
path : |
61
61
**/target/surefire-reports/*
62
62
**/target/artifacts/*
You can’t perform that action at this time.
0 commit comments