Skip to content

Commit 7b3cd3a

Browse files
committed
chore(pipeline): Use latest version of gradle
1 parent 67e8b70 commit 7b3cd3a

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/actions/build/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ runs:
1515
with:
1616
cache-disabled: true
1717

18+
- name: Clean Gradle cache
19+
shell: bash
20+
run: sudo rm -rf /mnt/gradle-cache/*
21+
1822
- name: Build, Tests and Verify Plugin
1923
shell: bash
2024
run: |

build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ fun properties(key: String) = providers.gradleProperty(key)
33
plugins {
44
id("java")
55
id("org.jetbrains.kotlin.jvm") version "2.1.0"
6-
id("org.jetbrains.intellij.platform") version "2.5.0"
6+
id("org.jetbrains.intellij.platform") version "2.10.5"
77
}
88

99
group = properties("pluginGroup").get()
@@ -25,6 +25,8 @@ dependencies {
2525
val version = providers.gradleProperty("platformVersion").getOrElse("2024.3")
2626
create(type, version)
2727

28+
pluginVerifier()
29+
2830
testFramework(org.jetbrains.intellij.platform.gradle.TestFrameworkType.Platform)
2931
bundledPlugin("JavaScript")
3032
}
@@ -35,8 +37,7 @@ dependencies {
3537
intellijPlatform {
3638
pluginVerification {
3739
ides {
38-
// ide(org.jetbrains.intellij.platform.gradle.IntelliJPlatformType.IntellijIdeaCommunity, "2024.3.7")
39-
ide(org.jetbrains.intellij.platform.gradle.IntelliJPlatformType.IntellijIdeaCommunity, "2024.3")
40+
create(org.jetbrains.intellij.platform.gradle.IntelliJPlatformType.IntellijIdeaCommunity, "2024.3")
4041
}
4142
}
4243
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)