diff --git a/README.md b/README.md index decc7fd..5ae7ba8 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ An example using all the available options is below: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - verifier-version: '1.230' + verifier-version: '1.255' plugin-location: 'build/distributions/sample-intellij-plugin-*.zip' ide-versions: | ideaIC:LATEST-EAP-SNAPSHOT @@ -116,6 +116,16 @@ An example using all the available options is below: This optional input allows users to pin a specific version of `intellij-plugin-verifier` to be used during validation. +**WARNING:** Due to the deprecation fo Bintray services on 2021-05-01, JetBrains moved the verifier artifacts to their own +Maven repository ( +See [`intellij-plugin-verifier` version `1.255` release notes](https://github.com/JetBrains/intellij-plugin-verifier/releases/tag/v1.255) +for details.). If you wish to specify a `verifier-version` in this GitHub Action, please ensure you are using **both**: +1) `intellij-plugin-verifier` version `1.255` or later + + **AND** + +2) `intellij-platform-plugin-verifier-action` version `2.0.0` or later + ### `plugin-location` This optional input allows users to specify a different location for the plugin(s) `.zip` file. The default diff --git a/entrypoint.sh b/entrypoint.sh index 7f1658e..360b1bd 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -181,7 +181,7 @@ else VERIFIER_VERSION=${INPUT_VERIFIER_VERSION} # The filename of the `verifier-cli-*-all.jar` file VERIFIER_JAR_FILENAME="verifier-cli-$VERIFIER_VERSION-all.jar" - VERIFIER_DOWNLOAD_URL="https://dl.bintray.com/jetbrains/intellij-plugin-service/org/jetbrains/intellij/plugins/verifier-cli/$INPUT_VERIFIER_VERSION/$VERIFIER_JAR_FILENAME" + VERIFIER_DOWNLOAD_URL="https://packages.jetbrains.team/maven/p/intellij-plugin-verifier/intellij-plugin-verifier/org/jetbrains/intellij/plugins/verifier-cli/$INPUT_VERIFIER_VERSION/$VERIFIER_JAR_FILENAME" fi # The full path of the `verifier-cli-*-all.jar` file