31
31
32
32
# Validate wrapper
33
33
- name : Gradle Wrapper Validation
34
- uses : gradle/wrapper-validation-action@v1.1.0
34
+ uses : gradle/actions/ wrapper-validation@v3
35
35
36
36
# Setup Java environment for the next steps
37
37
- name : Setup Java
81
81
82
82
# Store already-built plugin as an artifact for downloading
83
83
- name : Upload artifact
84
- uses : actions/upload-artifact@v3
84
+ uses : actions/upload-artifact@v4
85
85
with :
86
86
name : ${{ steps.artifact.outputs.filename }}
87
87
path : ./build/distributions/content/*/*
@@ -123,7 +123,7 @@ jobs:
123
123
# Collect Tests Result of failed tests
124
124
- name : Collect Tests Result
125
125
if : ${{ failure() }}
126
- uses : actions/upload-artifact@v3
126
+ uses : actions/upload-artifact@v4
127
127
with :
128
128
name : tests-result
129
129
path : ${{ github.workspace }}/build/reports/tests
@@ -166,7 +166,7 @@ jobs:
166
166
167
167
# Cache Plugin Verifier IDEs
168
168
- name : Setup Plugin Verifier IDEs Cache
169
- uses : actions/cache@v3
169
+ uses : actions/cache@v4
170
170
with :
171
171
path : ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
172
172
key : plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
@@ -178,7 +178,7 @@ jobs:
178
178
# Collect Plugin Verifier Result
179
179
- name : Collect Plugin Verifier Result
180
180
if : ${{ always() }}
181
- uses : actions/upload-artifact@v3
181
+ uses : actions/upload-artifact@v4
182
182
with :
183
183
name : pluginVerifier-result
184
184
path : ${{ github.workspace }}/build/reports/pluginVerifier
0 commit comments