Skip to content

Commit de0e286

Browse files
committed
ci update
1 parent 8a0f659 commit de0e286

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/build.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
pluginVerifierHomeDir: ${{ steps.properties.outputs.pluginVerifierHomeDir }}
2222
steps:
2323

24-
# Check out current repository
24+
# Check out the current repository
2525
- name: Fetch Sources
2626
uses: actions/checkout@v4
2727

2828
# Validate wrapper
2929
- name: Gradle Wrapper Validation
30-
uses: gradle/wrapper-validation-action@v1.1.0
30+
uses: gradle/actions/wrapper-validation@v3
3131

3232
# Set up Java environment for the next steps
3333
- name: Setup Java
@@ -58,8 +58,6 @@ jobs:
5858
echo "$CHANGELOG" >> $GITHUB_OUTPUT
5959
echo "EOF" >> $GITHUB_OUTPUT
6060
61-
./gradlew listProductsReleases # prepare list of IDEs for Plugin Verifier
62-
6361
# Build plugin
6462
- name: Build plugin
6563
run: ./gradlew buildPlugin
@@ -71,7 +69,7 @@ jobs:
7169
runs-on: ubuntu-latest
7270
steps:
7371

74-
# Check out current repository
72+
# Check out the current repository
7573
- name: Fetch Sources
7674
uses: actions/checkout@v4
7775

@@ -90,12 +88,12 @@ jobs:
9088

9189
# Run Verify Plugin task and IntelliJ Plugin Verifier tool
9290
- 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 }}
9492

9593
# Collect Plugin Verifier Result
9694
- name: Collect Plugin Verifier Result
9795
if: ${{ always() }}
98-
uses: actions/upload-artifact@v3
96+
uses: actions/upload-artifact@v4
9997
with:
10098
name: pluginVerifier-result
10199
path: ${{ github.workspace }}/build/reports/pluginVerifier

0 commit comments

Comments
 (0)