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 @@ -26,10 +26,10 @@ jobs:
26
26
27
27
steps :
28
28
- name : Check out code
29
- uses : actions/checkout@v3
29
+ uses : actions/checkout@v4
30
30
31
31
- name : Set up JDK ${{ matrix.java }}
32
- uses : actions/setup-java@v3
32
+ uses : actions/setup-java@v4
33
33
with :
34
34
java-version : ${{ matrix.java }}
35
35
distribution : ${{ matrix.distribution }}
@@ -39,14 +39,14 @@ jobs:
39
39
40
40
- name : Archive HTML test report
41
41
if : ${{ always() }}
42
- uses : actions/upload-artifact@v3
42
+ uses : actions/upload-artifact@v4
43
43
with :
44
44
name : test-reports-java${{ matrix.java }}-${{ matrix.distribution }}-html
45
45
path : " */build/reports/**"
46
46
47
47
- name : Archive JUnit test report
48
48
if : ${{ always() }}
49
- uses : actions/upload-artifact@v3
49
+ uses : actions/upload-artifact@v4
50
50
with :
51
51
name : test-reports-java${{ matrix.java }}-${{ matrix.distribution }}-xml
52
52
path : " */build/test-results/**/*.xml"
You can’t perform that action at this time.
0 commit comments