16
16
if : ${{ github.event_name == 'pull_request' }}
17
17
steps :
18
18
- name : Upload
19
- uses : actions/upload-artifact@v2
19
+ uses : actions/upload-artifact@v4
20
20
with :
21
21
name : Event File
22
22
path : ${{ github.event_path }}
47
47
run : ./gradlew --show-version check
48
48
- name : Upload Test Results
49
49
if : always()
50
- uses : actions/upload-artifact@v2
50
+ uses : actions/upload-artifact@v4
51
51
with :
52
52
name : Test Results (container almalinux ${{matrix.distribution}}-${{matrix.java}} as root)
53
53
path : |
85
85
./gradlew --show-version --init-script .github/workflows/propagateUserHome.gradle.kts check
86
86
- name : Upload Test Results
87
87
if : always()
88
- uses : actions/upload-artifact@v2
88
+ uses : actions/upload-artifact@v4
89
89
with :
90
90
name : Test Results (container almalinux ${{matrix.distribution}}-${{matrix.java}} as user)
91
91
path : |
@@ -116,7 +116,7 @@ jobs:
116
116
run : ./gradlew --show-version ${{ startsWith(matrix.os, 'windows') && 'build' || 'build --exclude-task javadoc' }}
117
117
- name : Upload Test Results
118
118
if : always()
119
- uses : actions/upload-artifact@v2
119
+ uses : actions/upload-artifact@v4
120
120
with :
121
121
name : Test Results (${{matrix.os}} ${{matrix.distribution}}-${{matrix.java}})
122
122
path : |
@@ -136,7 +136,7 @@ jobs:
136
136
if : ${{ github.event_name != 'pull_request' }}
137
137
steps :
138
138
- name : Download Artifacts
139
- uses : actions/download-artifact@v2
139
+ uses : actions/download-artifact@v4
140
140
with :
141
141
path : artifacts
142
142
- name : Publish Test Results
0 commit comments