From 6d1af33c66284f4e3f316f24a5654205342edc20 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Mon, 19 May 2025 12:11:02 +0200 Subject: [PATCH] GitHub Actions: Remove obsolete Plugin Verifier cache directory configuration --- .github/workflows/build.yml | 12 +----------- CHANGELOG.md | 1 + 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 529e70b..2226957 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,6 @@ jobs: outputs: version: ${{ steps.properties.outputs.version }} changelog: ${{ steps.properties.outputs.changelog }} - pluginVerifierHomeDir: ${{ steps.properties.outputs.pluginVerifierHomeDir }} steps: # Check out the current repository @@ -61,8 +60,6 @@ jobs: CHANGELOG="$(./gradlew getChangelog --unreleased --no-header --console=plain -q)" echo "version=$VERSION" >> $GITHUB_OUTPUT - echo "pluginVerifierHomeDir=~/.pluginVerifier" >> $GITHUB_OUTPUT - echo "changelog<> $GITHUB_OUTPUT echo "$CHANGELOG" >> $GITHUB_OUTPUT echo "EOF" >> $GITHUB_OUTPUT @@ -196,16 +193,9 @@ jobs: - name: Setup Gradle uses: gradle/actions/setup-gradle@v4 - # Cache Plugin Verifier IDEs - - name: Setup Plugin Verifier IDEs Cache - uses: actions/cache@v4 - with: - path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides - key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }} - # Run Verify Plugin task and IntelliJ Plugin Verifier tool - name: Run Plugin Verification tasks - run: ./gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }} + run: ./gradlew verifyPlugin # Collect Plugin Verifier Result - name: Collect Plugin Verifier Result diff --git a/CHANGELOG.md b/CHANGELOG.md index 5064565..c46e508 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ ### Removed - Remove `pluginUntilBuild` obsolete property +- GitHub Actions: Remove obsolete Plugin Verifier cache directory configuration ### Changed