diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index acf8df7..6e58763 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,9 +42,7 @@ jobs: # Setup Java environment for the next steps - name: Setup Gradle - uses: gradle/actions/setup-gradle@v3 - with: - gradle-home-cache-cleanup: true + uses: gradle/actions/setup-gradle@v4 # Set environment variables - name: Export Properties @@ -110,9 +108,7 @@ jobs: # Setup Gradle - name: Setup Gradle - uses: gradle/actions/setup-gradle@v3 - with: - gradle-home-cache-cleanup: true + uses: gradle/actions/setup-gradle@v4 # Run tests - name: Run Tests @@ -158,9 +154,7 @@ jobs: # Setup Gradle - name: Setup Gradle - uses: gradle/actions/setup-gradle@v3 - with: - gradle-home-cache-cleanup: true + uses: gradle/actions/setup-gradle@v4 # Cache Plugin Verifier IDEs - name: Setup Plugin Verifier IDEs Cache diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index de9a889..96510c2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -156,9 +156,7 @@ jobs: # Setup Gradle - name: Setup Gradle - uses: gradle/actions/setup-gradle@v3 - with: - gradle-home-cache-cleanup: true + uses: gradle/actions/setup-gradle@v4 # Cache Plugin Verifier IDEs - name: Setup Plugin Verifier IDEs Cache diff --git a/CHANGELOG.md b/CHANGELOG.md index 0306e5f..a25d8c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ - Update IntelliJ Platform 1.14.2 - Update IntelliJ Platform 2.0.0 - Update IntelliJ Platform 2.0.1 +- Update IntelliJ Platform 2.0.2 ## [2024.2.0] diff --git a/gradle.properties b/gradle.properties index cc5a88b..3222337 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,10 +5,10 @@ pluginVersion = 2024.2.0 pluginSinceBuild = 233 pluginUntilBuild = 242.* platformType = IC -platformVersion = 2023.3.7 +platformVersion = 2023.3.8 platformPlugins = platformBundledPlugins = -gradleVersion = 8.9 +gradleVersion = 8.10.2 kotlin.stdlib.default.dependency = false org.gradle.configuration-cache = true org.gradle.caching = true diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 178c758..c1475ec 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,10 +4,10 @@ junit = "4.13.2" # plugins changelog = "2.2.1" -intelliJPlatform = "2.0.1" +intelliJPlatform = "2.1.0" kotlin = "1.9.25" kover = "0.8.3" -qodana = "2024.1.9" +qodana = "2024.2.3" [libraries] junit = { group = "junit", name = "junit", version.ref = "junit" } diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 2c35211..a4b76b9 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 09523c0..df97d72 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/settings.gradle.kts b/settings.gradle.kts index 41f8c85..30053fb 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -3,3 +3,7 @@ plugins { } rootProject.name = "bitrix-idea" + +plugins { + id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0" +} \ No newline at end of file