File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 27
27
run : |
28
28
echo -n ${{ github.event.number }} > pull-request-number
29
29
- name : Upload pull request number
30
- uses : actions/upload-artifact@v3
30
+ uses : actions/upload-artifact@v4
31
31
with :
32
32
name : pull-request-number-${{ github.event.number }}
33
33
path : pull-request-number
@@ -40,17 +40,17 @@ jobs:
40
40
matrix :
41
41
java : [ 17, 21 ]
42
42
steps :
43
- - uses : actions/checkout@v3
43
+ - uses : actions/checkout@v4
44
44
- name : Install JDK ${{ matrix.java }}
45
- uses : actions/setup-java@v3
45
+ uses : actions/setup-java@v4
46
46
with :
47
47
distribution : temurin
48
48
java-version : ${{ matrix.java }}
49
49
cache : maven
50
50
- name : Build with Maven
51
51
run : mvn -B clean install
52
52
- name : Upload build reports (if build failed)
53
- uses : actions/upload-artifact@v3
53
+ uses : actions/upload-artifact@v4
54
54
if : ${{ failure() || cancelled() }}
55
55
with :
56
56
name : " build-reports-Build - JDK ${{ matrix.java }}"
You can’t perform that action at this time.
0 commit comments