@@ -21,13 +21,13 @@ jobs:
21
21
pluginVerifierHomeDir : ${{ steps.properties.outputs.pluginVerifierHomeDir }}
22
22
steps :
23
23
24
- # Check out current repository
24
+ # Check out the current repository
25
25
- name : Fetch Sources
26
26
uses : actions/checkout@v4
27
27
28
28
# Validate wrapper
29
29
- name : Gradle Wrapper Validation
30
- uses : gradle/wrapper-validation-action@v1.1.0
30
+ uses : gradle/actions/ wrapper-validation@v3
31
31
32
32
# Set up Java environment for the next steps
33
33
- name : Setup Java
58
58
echo "$CHANGELOG" >> $GITHUB_OUTPUT
59
59
echo "EOF" >> $GITHUB_OUTPUT
60
60
61
- ./gradlew listProductsReleases # prepare list of IDEs for Plugin Verifier
62
-
63
61
# Build plugin
64
62
- name : Build plugin
65
63
run : ./gradlew buildPlugin
71
69
runs-on : ubuntu-latest
72
70
steps :
73
71
74
- # Check out current repository
72
+ # Check out the current repository
75
73
- name : Fetch Sources
76
74
uses : actions/checkout@v4
77
75
@@ -90,12 +88,12 @@ jobs:
90
88
91
89
# Run Verify Plugin task and IntelliJ Plugin Verifier tool
92
90
- name : Run Plugin Verification tasks
93
- run : ./gradlew runPluginVerifier -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
91
+ run : ./gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
94
92
95
93
# Collect Plugin Verifier Result
96
94
- name : Collect Plugin Verifier Result
97
95
if : ${{ always() }}
98
- uses : actions/upload-artifact@v3
96
+ uses : actions/upload-artifact@v4
99
97
with :
100
98
name : pluginVerifier-result
101
99
path : ${{ github.workspace }}/build/reports/pluginVerifier
0 commit comments